summaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2006-10-19 19:36:00 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2006-10-19 19:36:00 (GMT)
commit420f2b000942854f5abb621649d62b38315e9d83 (patch)
treea54c50ceecb2f311b87b2bb572038667a4e32383 /plugins
parent92585ee4a58f85eb7baddc2d8908955934a34334 (diff)
downloadmonitoring-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')
-rw-r--r--plugins/check_snmp.c6
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] = "";
93regex_t preg; 93regex_t preg;
94regmatch_t pmatch[10]; 94regmatch_t pmatch[10];
95char timestamp[10] = ""; 95char timestamp[10] = "";
96char errbuf[MAX_INPUT_BUFFER]; 96char errbuf[MAX_INPUT_BUFFER] = "";
97char perfstr[MAX_INPUT_BUFFER]; 97char perfstr[MAX_INPUT_BUFFER] = "";
98int cflags = REG_EXTENDED | REG_NOSUB | REG_NEWLINE; 98int cflags = REG_EXTENDED | REG_NOSUB | REG_NEWLINE;
99int eflags = 0; 99int eflags = 0;
100int errcode, excode; 100int 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);