diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2006-10-19 19:36:00 +0000 |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2006-10-19 19:36:00 +0000 |
commit | 420f2b000942854f5abb621649d62b38315e9d83 (patch) | |
tree | a54c50ceecb2f311b87b2bb572038667a4e32383 /plugins/check_snmp.c | |
parent | 92585ee4a58f85eb7baddc2d8908955934a34334 (diff) | |
download | monitoring-plugins-420f2b000942854f5abb621649d62b38315e9d83.tar.gz |
Initialise strings for Fedora Core 5 (Henning Schmiedehausen)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1505 f882894a-f735-0410-b71e-b25c423dba1c
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 8cf1aa67..ac2c58ce 100644 --- a/plugins/check_snmp.c +++ b/plugins/check_snmp.c @@ -93,8 +93,8 @@ char regex_expect[MAX_INPUT_BUFFER] = ""; regex_t preg; regmatch_t pmatch[10]; char timestamp[10] = ""; -char errbuf[MAX_INPUT_BUFFER]; -char perfstr[MAX_INPUT_BUFFER]; +char errbuf[MAX_INPUT_BUFFER] = ""; +char perfstr[MAX_INPUT_BUFFER] = ""; int cflags = REG_EXTENDED | REG_NOSUB | REG_NEWLINE; int eflags = 0; int errcode, excode; @@ -151,7 +151,7 @@ main (int argc, char **argv) char *ptr = NULL; char *p2 = NULL; char *show = NULL; - char type[8]; + char type[8] = ""; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); |