svn commit: r236551 - head/usr.sbin/daemon

Mikolaj Golub trociny at FreeBSD.org
Mon Jun 4 09:25:02 UTC 2012


Author: trociny
Date: Mon Jun  4 09:25:01 2012
New Revision: 236551
URL: http://svn.freebsd.org/changeset/base/236551

Log:
  Document -r option in SYNOPSIS and usage statement.
  
  Submitted by:	Andrey Zonov <andrey zonov.org>
  MFC after:	3 days

Modified:
  head/usr.sbin/daemon/daemon.8
  head/usr.sbin/daemon/daemon.c

Modified: head/usr.sbin/daemon/daemon.8
==============================================================================
--- head/usr.sbin/daemon/daemon.8	Mon Jun  4 09:22:22 2012	(r236550)
+++ head/usr.sbin/daemon/daemon.8	Mon Jun  4 09:25:01 2012	(r236551)
@@ -26,7 +26,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd February 19, 2012
+.Dd June 4, 2012
 .Dt DAEMON 8
 .Os
 .Sh NAME
@@ -34,7 +34,7 @@
 .Nd run detached from the controlling terminal
 .Sh SYNOPSIS
 .Nm
-.Op Fl cf
+.Op Fl cfr
 .Op Fl p Ar pidfile
 .Op Fl u Ar user
 .Ar command arguments ...

Modified: head/usr.sbin/daemon/daemon.c
==============================================================================
--- head/usr.sbin/daemon/daemon.c	Mon Jun  4 09:22:22 2012	(r236550)
+++ head/usr.sbin/daemon/daemon.c	Mon Jun  4 09:25:01 2012	(r236551)
@@ -240,7 +240,7 @@ static void
 usage(void)
 {
 	(void)fprintf(stderr,
-	    "usage: daemon [-cf] [-p pidfile] [-u user] command "
+	    "usage: daemon [-cfr] [-p pidfile] [-u user] command "
 		"arguments ...\n");
 	exit(1);
 }


More information about the svn-src-all mailing list