]> sourceware.org Git - lvm2.git/commitdiff
Replace multiple fprintf calls with one large string parameter
authorZdenek Kabelac <zkabelac@redhat.com>
Mon, 20 Dec 2010 13:48:28 +0000 (13:48 +0000)
committerZdenek Kabelac <zkabelac@redhat.com>
Mon, 20 Dec 2010 13:48:28 +0000 (13:48 +0000)
daemons/clvmd/clvmd.c

index 45e2486686fbff471f3026c30bdc219e0ea045d6..1a35c495b6a161658320f3621990885ee6d5f6c6 100644 (file)
@@ -143,38 +143,37 @@ static void add_reply_to_list(struct local_client *client, int status,
 static if_type_t parse_cluster_interface(char *ifname);
 static if_type_t get_cluster_type(void);
 
-static void usage(char *prog, FILE *file)
+static void usage(const char *prog, FILE *file)
 {
-       fprintf(file, "Usage:\n");
-       fprintf(file, "%s [Vhd]\n", prog);
-       fprintf(file, "\n");
-       fprintf(file, "   -V       Show version of clvmd\n");
-       fprintf(file, "   -h       Show this help information\n");
-       fprintf(file, "   -d       Set debug level\n");
-       fprintf(file, "            If starting clvmd then don't fork, run in the foreground\n");
-       fprintf(file, "   -R       Tell all running clvmds in the cluster to reload their device cache\n");
-       fprintf(file, "   -S       Restart clvmd, preserving exclusive locks\n");
-       fprintf(file, "   -C       Sets debug level (from -d) on all clvmd instances clusterwide\n");
-       fprintf(file, "   -t<secs> Command timeout (default 60 seconds)\n");
-       fprintf(file, "   -T<secs> Startup timeout (default none)\n");
-       fprintf(file, "   -I<cmgr> Cluster manager (default: auto)\n");
-       fprintf(file, "            Available cluster managers: ");
+       fprintf(file, "Usage:\n"
+               "%s [Vhd]\n\n"
+               "   -V       Show version of clvmd\n"
+               "   -h       Show this help information\n"
+               "   -d       Set debug level\n"
+               "            If starting clvmd then don't fork, run in the foreground\n"
+               "   -R       Tell all running clvmds in the cluster to reload their device cache\n"
+               "   -S       Restart clvmd, preserving exclusive locks\n"
+               "   -C       Sets debug level (from -d) on all clvmd instances clusterwide\n"
+               "   -t<secs> Command timeout (default 60 seconds)\n"
+               "   -T<secs> Startup timeout (default none)\n"
+               "   -I<cmgr> Cluster manager (default: auto)\n"
+               "            Available cluster managers: "
 #ifdef USE_COROSYNC
-       fprintf(file, "corosync ");
+               "corosync "
 #endif
 #ifdef USE_CMAN
-       fprintf(file, "cman ");
+               "cman "
 #endif
 #ifdef USE_OPENAIS
-       fprintf(file, "openais ");
+               "openais "
 #endif
 #ifdef USE_GULM
-       fprintf(file, "gulm ");
+               "gulm "
 #endif
 #ifdef USE_SINGLENODE
-       fprintf(file, "singlenode");
+               "singlenode "
 #endif
-       fprintf(file, "\n");
+               "\n", prog);
 }
 
 /* Called to signal the parent how well we got on during initialisation */
This page took 0.04289 seconds and 5 git commands to generate.