[Nagiosplug-checkins] SF.net SVN: nagiosplug: [1812] nagiosplug/trunk/plugins/check_snmp.c
dermoth at users.sourceforge.net
dermoth at users.sourceforge.net
Fri Nov 9 14:06:33 CET 2007
Revision: 1812
http://nagiosplug.svn.sourceforge.net/nagiosplug/?rev=1812&view=rev
Author: dermoth
Date: 2007-11-09 05:06:32 -0800 (Fri, 09 Nov 2007)
Log Message:
-----------
Fix missing \n in --help output
Modified Paths:
--------------
nagiosplug/trunk/plugins/check_snmp.c
Modified: nagiosplug/trunk/plugins/check_snmp.c
===================================================================
--- nagiosplug/trunk/plugins/check_snmp.c 2007-10-25 21:06:08 UTC (rev 1811)
+++ nagiosplug/trunk/plugins/check_snmp.c 2007-11-09 13:06:32 UTC (rev 1812)
@@ -946,8 +946,8 @@
/* 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");
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Commits
mailing list