diff options
author | 2008-12-02 17:55:35 +0000 | |
---|---|---|
committer | 2008-12-02 17:55:35 +0000 | |
commit | b686f0f95f052d8a5065633b3e759d0361334e2b (patch) | |
tree | a3519de6df738150c4489c05556734c5c4233a9d | |
parent | cleanup ieee80211_classify(): retrieve VLAN tag from m_pkthdr.ether_vtag. (diff) | |
download | wireguard-openbsd-b686f0f95f052d8a5065633b3e759d0361334e2b.tar.xz wireguard-openbsd-b686f0f95f052d8a5065633b3e759d0361334e2b.zip |
correct spelling (ambigous -> ambiguous)
-rw-r--r-- | usr.sbin/httpd/src/main/http_main.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/httpd/src/main/http_main.c b/usr.sbin/httpd/src/main/http_main.c index 5af9803f4a1..bff720f88fa 100644 --- a/usr.sbin/httpd/src/main/http_main.c +++ b/usr.sbin/httpd/src/main/http_main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: http_main.c,v 1.52 2008/05/21 11:28:48 mbalmer Exp $ */ +/* $OpenBSD: http_main.c,v 1.53 2008/12/02 17:55:35 sthen Exp $ */ /* ==================================================================== * The Apache Software License, Version 1.1 @@ -701,8 +701,8 @@ static void usage(char *bin) fprintf(stderr, " -c directive : process directive after reading config files\n"); fprintf(stderr, " -D parameter : define a parameter for use in <IfDefine name> directives\n"); fprintf(stderr, " -d serverroot : specify an alternate initial ServerRoot\n"); - fprintf(stderr, " -4 : assume IPv4 for ambigous directirves (default)\n"); - fprintf(stderr, " -6 : assume IPv6 for ambigous directives\n"); + fprintf(stderr, " -4 : assume IPv4 for ambiguous directirves (default)\n"); + fprintf(stderr, " -6 : assume IPv6 for ambiguous directives\n"); fprintf(stderr, " -F : run main process in foreground, for process supervisors\n"); fprintf(stderr, " -f config : specify an alternate ServerConfigFile\n"); fprintf(stderr, " -h : list available command line options (this page)\n"); @@ -711,7 +711,7 @@ static void usage(char *bin) fprintf(stderr, " -S : show parsed settings (currently only vhost settings)\n"); fprintf(stderr, " -T : run syntax check for config files (without docroot check)\n"); fprintf(stderr, " -t : run syntax check for config files (with docroot check)\n"); - fprintf(stderr, " -U : unspecified address family for ambigous directives\n"); + fprintf(stderr, " -U : unspecified address family for ambiguous directives\n"); fprintf(stderr, " -u : unsecure mode: do not chroot into ServerRoot\n"); fprintf(stderr, " -V : show compile settings\n"); fprintf(stderr, " -v : show version number\n"); |