diff options
| author | Holger Weiss <holger@zedat.fu-berlin.de> | 2013-09-19 12:41:42 +0200 |
|---|---|---|
| committer | Holger Weiss <holger@zedat.fu-berlin.de> | 2013-09-19 12:41:42 +0200 |
| commit | 6f0366c8b8ec809c58c3604531b14133edc69bf2 (patch) | |
| tree | ab02fb40707f68a2c095efe415bd5b6d16ac05a6 | |
| parent | 843bbfb75adf888b1cb0ee3b0dc8f98d70ff6dda (diff) | |
| download | monitoring-plugins-6f0366c8b8ec809c58c3604531b14133edc69bf2.tar.gz | |
check_pgsql: Don't exit UNKNOWN instead of OK
Since commit 912df3ef9b188c82893dace1e9b56c42a558fdba, check_pgsql
exited UNKNOWN instead of OK if the new --query option was *not*
specified. This bug is fixed now.
| -rw-r--r-- | plugins/check_pgsql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_pgsql.c b/plugins/check_pgsql.c index 8d60701f..324bd5f4 100644 --- a/plugins/check_pgsql.c +++ b/plugins/check_pgsql.c | |||
| @@ -258,7 +258,7 @@ main (int argc, char **argv) | |||
| 258 | if (verbose) | 258 | if (verbose) |
| 259 | printf("Closing connection\n"); | 259 | printf("Closing connection\n"); |
| 260 | PQfinish (conn); | 260 | PQfinish (conn); |
| 261 | return (query_status > status) ? query_status : status; | 261 | return (pgquery && query_status > status) ? query_status : status; |
| 262 | } | 262 | } |
| 263 | 263 | ||
| 264 | 264 | ||
