[Nagiosplug-checkins] SF.net SVN: nagiosplug:[2209] nagiosplug/trunk/plugins/check_pgsql.c

dermoth at users.sourceforge.net dermoth at users.sourceforge.net
Sat Jun 6 07:56:08 CEST 2009


Revision: 2209
          http://nagiosplug.svn.sourceforge.net/nagiosplug/?rev=2209&view=rev
Author:   dermoth
Date:     2009-06-06 05:56:08 +0000 (Sat, 06 Jun 2009)

Log Message:
-----------
Whitespace indent fixes for check_pgsql

From: Matthias Eble <psychotrahe at gmx.de>

Modified Paths:
--------------
    nagiosplug/trunk/plugins/check_pgsql.c

Modified: nagiosplug/trunk/plugins/check_pgsql.c
===================================================================
--- nagiosplug/trunk/plugins/check_pgsql.c	2009-06-06 05:55:54 UTC (rev 2208)
+++ nagiosplug/trunk/plugins/check_pgsql.c	2009-06-06 05:56:08 UTC (rev 2209)
@@ -425,7 +425,7 @@
 
 	printf (_("Test whether a PostgreSQL Database is accepting connections."));
 
-  printf ("\n\n");
+	printf ("\n\n");
 
 	print_usage ();
 
@@ -437,12 +437,12 @@
 	printf (_(UT_IPv46));
 
 	printf (" %s\n", "-d, --database=STRING");
-  printf ("    %s", _("Database to check "));
-  printf (_("(default: %s)"), DEFAULT_DB);
-  printf (" %s\n", "-l, --logname = STRING");
-  printf ("    %s\n", _("Login name of user"));
-  printf (" %s\n", "-p, --password = STRING");
-  printf ("    %s\n", _("Password (BIG SECURITY ISSUE)"));
+	printf ("    %s", _("Database to check "));
+	printf (_("(default: %s)"), DEFAULT_DB);
+	printf (" %s\n", "-l, --logname = STRING");
+	printf ("    %s\n", _("Login name of user"));
+	printf (" %s\n", "-p, --password = STRING");
+	printf ("    %s\n", _("Password (BIG SECURITY ISSUE)"));
 
 	printf (_(UT_WARN_CRIT));
 
@@ -450,26 +450,26 @@
 
 	printf (_(UT_VERBOSE));
 
-  printf ("\n");
+	printf ("\n");
 	printf (" %s\n", _("All parameters are optional."));
-  printf (" %s\n", _("This plugin tests a PostgreSQL DBMS to determine whether it is active and"));
-  printf (" %s\n", _("accepting queries. In its current operation, it simply connects to the"));
-  printf (" %s\n", _("specified database, and then disconnects. If no database is specified, it"));
-  printf (" %s\n", _("connects to the template1 database, which is present in every functioning"));
-  printf (" %s\n\n", _("PostgreSQL DBMS."));
+	printf (" %s\n", _("This plugin tests a PostgreSQL DBMS to determine whether it is active and"));
+	printf (" %s\n", _("accepting queries. In its current operation, it simply connects to the"));
+	printf (" %s\n", _("specified database, and then disconnects. If no database is specified, it"));
+	printf (" %s\n", _("connects to the template1 database, which is present in every functioning"));
+	printf (" %s\n\n", _("PostgreSQL DBMS."));
 
 	printf (" %s\n", _("The plugin will connect to a local postmaster if no host is specified. To"));
-  printf (" %s\n", _("connect to a remote host, be sure that the remote postmaster accepts TCP/IP"));
-  printf (" %s\n\n", _("connections (start the postmaster with the -i option)."));
+	printf (" %s\n", _("connect to a remote host, be sure that the remote postmaster accepts TCP/IP"));
+	printf (" %s\n\n", _("connections (start the postmaster with the -i option)."));
 
 	printf (" %s\n", _("Typically, the nagios user (unless the --logname option is used) should be"));
-  printf (" %s\n", _("able to connect to the database without a password. The plugin can also send"));
-  printf (" %s\n", _("a password, but no effort is made to obsure or encrypt the password."));
+	printf (" %s\n", _("able to connect to the database without a password. The plugin can also send"));
+	printf (" %s\n", _("a password, but no effort is made to obsure or encrypt the password."));
 
 #ifdef NP_EXTRA_OPTS
-  printf ("\n");
-  printf ("%s\n", _("Notes:"));
-  printf (_(UT_EXTRA_OPTS_NOTES));
+	printf ("\n");
+	printf ("%s\n", _("Notes:"));
+	printf (_(UT_EXTRA_OPTS_NOTES));
 #endif
 
 	printf (_(UT_SUPPORT));
@@ -480,7 +480,7 @@
 void
 print_usage (void)
 {
-  printf (_("Usage:"));
+	printf (_("Usage:"));
 	printf ("%s [-H <host>] [-P <port>] [-c <critical time>] [-w <warning time>]\n", progname);
-  printf (" [-t <timeout>] [-d <database>] [-l <logname>] [-p <password>]\n");
+	printf (" [-t <timeout>] [-d <database>] [-l <logname>] [-p <password>]\n");
 }


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