diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2008-10-03 18:58:53 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2008-10-03 18:58:53 +0000 |
commit | f976ec24196286d5a5dafc40cf4853681062cf1c (patch) | |
tree | 52412efb8369487e637f10760c22fc4df56c2a17 /libexec/spamd-setup | |
parent | 155b49833acddaa21d3a06005df389d4083db780 (diff) |
-D before -d;
Diffstat (limited to 'libexec/spamd-setup')
-rw-r--r-- | libexec/spamd-setup/spamd-setup.8 | 8 | ||||
-rw-r--r-- | libexec/spamd-setup/spamd-setup.c | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/libexec/spamd-setup/spamd-setup.8 b/libexec/spamd-setup/spamd-setup.8 index 78979d412e8..ecf0dab39d4 100644 --- a/libexec/spamd-setup/spamd-setup.8 +++ b/libexec/spamd-setup/spamd-setup.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: spamd-setup.8,v 1.16 2008/10/03 14:25:10 deraadt Exp $ +.\" $OpenBSD: spamd-setup.8,v 1.17 2008/10/03 18:58:52 jmc Exp $ .\" .\" Copyright (c) 2003 Jason L. Wright (jason@thought.net) .\" All rights reserved. @@ -31,7 +31,7 @@ .Nd parse and load file of spammer addresses .Sh SYNOPSIS .Nm spamd-setup -.Op Fl bdDn +.Op Fl bDdn .Sh DESCRIPTION The .Nm @@ -72,10 +72,10 @@ Use this flag if is running with the .Fl b flag too. -.It Fl d -Debug mode reports a few pieces of information. .It Fl D Daemonize. +.It Fl d +Debug mode reports a few pieces of information. .It Fl n Dry-run mode. No data is shipped. diff --git a/libexec/spamd-setup/spamd-setup.c b/libexec/spamd-setup/spamd-setup.c index 2a9701187cc..d58065807fb 100644 --- a/libexec/spamd-setup/spamd-setup.c +++ b/libexec/spamd-setup/spamd-setup.c @@ -1,4 +1,4 @@ -/* $OpenBSD: spamd-setup.c,v 1.34 2008/10/03 14:25:10 deraadt Exp $ */ +/* $OpenBSD: spamd-setup.c,v 1.35 2008/10/03 18:58:52 jmc Exp $ */ /* * Copyright (c) 2003 Bob Beck. All rights reserved. @@ -780,7 +780,7 @@ __dead void usage(void) { - fprintf(stderr, "usage: %s [-bdDn]\n", __progname); + fprintf(stderr, "usage: %s [-bDdn]\n", __progname); exit(1); } |