Date: Sat, 25 May 2019 11:22:49 +0000 (UTC) From: "Rodney W. Grimes" <rgrimes@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r348270 - head/libexec/bootpd Message-ID: <201905251122.x4PBMnsX082695@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rgrimes Date: Sat May 25 11:22:49 2019 New Revision: 348270 URL: https://svnweb.freebsd.org/changeset/base/348270 Log: Correctly align usage: output Modified: head/libexec/bootpd/bootpd.c Modified: head/libexec/bootpd/bootpd.c ============================================================================== --- head/libexec/bootpd/bootpd.c Sat May 25 10:17:03 2019 (r348269) +++ head/libexec/bootpd/bootpd.c Sat May 25 11:22:49 2019 (r348270) @@ -589,13 +589,13 @@ usage() fprintf(stderr, "usage: bootpd [-a] [-i | -s] [-c chdir-path] [-d level] [-h hostname]\n" " [-t timeout] [bootptab [dumpfile]]\n"); - fprintf(stderr, "\t -a\tdon't modify ARP table\n"); - fprintf(stderr, "\t -c n\tset current directory\n"); - fprintf(stderr, "\t -d n\tset debug level\n"); - fprintf(stderr, "\t -h n\tset the hostname to listen on\n"); - fprintf(stderr, "\t -i\tforce inetd mode (run as child of inetd)\n"); - fprintf(stderr, "\t -s\tforce standalone mode (run without inetd)\n"); - fprintf(stderr, "\t -t n\tset inetd exit timeout to n minutes\n"); + fprintf(stderr, " -a\tdon't modify ARP table\n"); + fprintf(stderr, " -c n\tset current directory\n"); + fprintf(stderr, " -d n\tset debug level\n"); + fprintf(stderr, " -h n\tset the hostname to listen on\n"); + fprintf(stderr, " -i\tforce inetd mode (run as child of inetd)\n"); + fprintf(stderr, " -s\tforce standalone mode (run without inetd)\n"); + fprintf(stderr, " -t n\tset inetd exit timeout to n minutes\n"); exit(1); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905251122.x4PBMnsX082695>