Blame SOURCES/radvd-1.9.2-cli-man-help.patch

521dd6
diff --git a/radvd.8.man b/radvd.8.man
521dd6
index 0310150..c31d626 100644
521dd6
--- a/radvd.8.man
521dd6
+++ b/radvd.8.man
521dd6
@@ -71,6 +71,9 @@ This option disables privilege separation, and as a result,
521dd6
 the non-privileged radvd process does not have permissions to
521dd6
 change interface configuration.
521dd6
 .TP
521dd6
+.BR "\-n" , " \-\-nodaemon"
521dd6
+Prevent the daemonizing.
521dd6
+.TP
521dd6
 .BR "\-c" , " \-\-configtest"
521dd6
 Test configuration and do startup tests and then exit.
521dd6
 .TP
521dd6
diff --git a/radvd.c b/radvd.c
521dd6
index 7cadf16..a241779 100644
521dd6
--- a/radvd.c
521dd6
+++ b/radvd.c
521dd6
@@ -42,6 +42,7 @@ char usage_str[] = {
521dd6
 "  -p, --pidfile=PATH     Sets the pid file.\n"
521dd6
 "  -t, --chrootdir=PATH   Chroot to the specified path.\n"
521dd6
 "  -u, --username=USER    Switch to the specified user.\n"
521dd6
+"  -s, --singleprocess    Disable privilege separation.\n"
521dd6
 "  -n, --nodaemon         Prevent the daemonizing.\n"
521dd6
 #ifdef HAVE_NETLINK
521dd6
 "  -L, --disablenetlink     Disable netlink feature\n"
521dd6
@@ -137,7 +138,7 @@ main(int argc, char *argv[])
521dd6
 	pidfile = PATH_RADVD_PID;
521dd6
 
521dd6
 	/* parse args */
521dd6
-#define OPTIONS_STR "d:C:l:m:p:t:u:vhcsn"
521dd6
+#define OPTIONS_STR "d:C:l:m:f:p:t:u:vhcsn"
521dd6
 #ifdef HAVE_GETOPT_LONG
521dd6
 	while ((c = getopt_long(argc, argv, OPTIONS_STR, prog_opt, &opt_idx)) > 0)
521dd6
 #else