svn commit: r290182 - head/usr.sbin/rtsold

Garrett Cooper ngie at FreeBSD.org
Fri Oct 30 07:36:45 UTC 2015


Author: ngie
Date: Fri Oct 30 07:36:43 2015
New Revision: 290182
URL: https://svnweb.freebsd.org/changeset/base/290182

Log:
  Fix rtsold's usage message
  
  - Remove -a from the usage message example dealing with specific
    interfaces. -a only makes sense when not specifying an interface,
    such that it's to be run on all interfaces
  - Fix the pidfile option (it's -p, not -P)
  - Change `interfaces` to `interface` to match the manpage
  
  MFC after: 3 days
  PR: 173744
  Sponsored by: EMC / Isilon Storage Division

Modified:
  head/usr.sbin/rtsold/rtsold.c

Modified: head/usr.sbin/rtsold/rtsold.c
==============================================================================
--- head/usr.sbin/rtsold/rtsold.c	Fri Oct 30 06:07:41 2015	(r290181)
+++ head/usr.sbin/rtsold/rtsold.c	Fri Oct 30 07:36:43 2015	(r290182)
@@ -779,15 +779,15 @@ static void
 usage(void)
 {
 #ifndef SMALL
-	fprintf(stderr, "usage: rtsold [-adDfFm1] [-O script-name] "
-	    "[-P pidfile] [-R script-name] interfaces...\n");
 	fprintf(stderr, "usage: rtsold [-dDfFm1] [-O script-name] "
-	    "[-P pidfile] [-R script-name] -a\n");
+	    "[-p pidfile] [-R script-name] interface ...\n");
+	fprintf(stderr, "usage: rtsold [-dDfFm1] [-O script-name] "
+	    "[-p pidfile] [-R script-name] -a\n");
 #else
 	fprintf(stderr, "usage: rtsol [-dDF] [-O script-name] "
-	    "[-P pidfile] [-R script-name] interfaces...\n");
+	    "[-p pidfile] [-R script-name] interface ...\n");
 	fprintf(stderr, "usage: rtsol [-dDF] [-O script-name] "
-	    "[-P pidfile] [-R script-name] -a\n");
+	    "[-p pidfile] [-R script-name] -a\n");
 #endif
 }
 


More information about the svn-src-all mailing list