diff options
Diffstat (limited to 'plugins/check_snmp.c')
-rw-r--r-- | plugins/check_snmp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c index 8cf1aa6..ac2c58c 100644 --- a/plugins/check_snmp.c +++ b/plugins/check_snmp.c | |||
@@ -93,8 +93,8 @@ char regex_expect[MAX_INPUT_BUFFER] = ""; | |||
93 | regex_t preg; | 93 | regex_t preg; |
94 | regmatch_t pmatch[10]; | 94 | regmatch_t pmatch[10]; |
95 | char timestamp[10] = ""; | 95 | char timestamp[10] = ""; |
96 | char errbuf[MAX_INPUT_BUFFER]; | 96 | char errbuf[MAX_INPUT_BUFFER] = ""; |
97 | char perfstr[MAX_INPUT_BUFFER]; | 97 | char perfstr[MAX_INPUT_BUFFER] = ""; |
98 | int cflags = REG_EXTENDED | REG_NOSUB | REG_NEWLINE; | 98 | int cflags = REG_EXTENDED | REG_NOSUB | REG_NEWLINE; |
99 | int eflags = 0; | 99 | int eflags = 0; |
100 | int errcode, excode; | 100 | int errcode, excode; |
@@ -151,7 +151,7 @@ main (int argc, char **argv) | |||
151 | char *ptr = NULL; | 151 | char *ptr = NULL; |
152 | char *p2 = NULL; | 152 | char *p2 = NULL; |
153 | char *show = NULL; | 153 | char *show = NULL; |
154 | char type[8]; | 154 | char type[8] = ""; |
155 | 155 | ||
156 | setlocale (LC_ALL, ""); | 156 | setlocale (LC_ALL, ""); |
157 | bindtextdomain (PACKAGE, LOCALEDIR); | 157 | bindtextdomain (PACKAGE, LOCALEDIR); |