Code

Fix missing \n in --help output
authorThomas Guyot-Sionnest <dermoth@users.sourceforge.net>
Fri, 9 Nov 2007 13:06:32 +0000 (13:06 +0000)
committerThomas Guyot-Sionnest <dermoth@users.sourceforge.net>
Fri, 9 Nov 2007 13:06:32 +0000 (13:06 +0000)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1812 f882894a-f735-0410-b71e-b25c423dba1c

plugins/check_snmp.c

index 845c1bb4b835bf43e23e08c72195a95c5bfb0eb2..3f9a03d2bcaa30762afcab756df0d1130d1fbace 100644 (file)
@@ -946,8 +946,8 @@ print_help (void)
 
        /* Authentication Tokens*/
        printf (" %s\n", "-C, --community=STRING");
-  printf ("    %s\n", _("Optional community string for SNMP communication"));
-  printf (_("(default is \"%s\")"),DEFAULT_COMMUNITY);
+  printf ("    %s ", _("Optional community string for SNMP communication"));
+  printf ("(%s \"%s\")\n", _("default is") ,DEFAULT_COMMUNITY);
   printf (" %s\n", "-U, --secname=USERNAME");
   printf ("    %s\n", _("SNMPv3 username"));
   printf (" %s\n", "-A, --authpassword=PASSWORD");