diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-08-11 16:18:37 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-08-11 16:18:37 +0000 |
commit | 0d34e4396a2cb8c5d5d74c7c6fdf78f8b2d43e13 (patch) | |
tree | fbc08bc85a13cc94828440c66543acee07aab09a /sbin/mountd | |
parent | 9f68171c592d752ca95f88e6c1f2cf957ad64751 (diff) |
proper name is -network not -net; d
Diffstat (limited to 'sbin/mountd')
-rw-r--r-- | sbin/mountd/mountd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/mountd/mountd.c b/sbin/mountd/mountd.c index b346ebb2852..e6644149c32 100644 --- a/sbin/mountd/mountd.c +++ b/sbin/mountd/mountd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mountd.c,v 1.25 1998/06/23 23:34:14 deraadt Exp $ */ +/* $OpenBSD: mountd.c,v 1.26 1998/08/11 16:18:36 deraadt Exp $ */ /* $NetBSD: mountd.c,v 1.31 1996/02/18 11:57:53 fvdl Exp $ */ /* @@ -2106,11 +2106,11 @@ check_options(dp) return (1); } if ((opt_flags & OP_MASK) && (opt_flags & OP_NET) == 0) { - syslog(LOG_ERR, "-mask requires -net"); + syslog(LOG_ERR, "-mask requires -network"); return (1); } if ((opt_flags & (OP_NET | OP_ISO)) == (OP_NET | OP_ISO)) { - syslog(LOG_ERR, "-net and -iso mutually exclusive"); + syslog(LOG_ERR, "-network and -iso mutually exclusive"); return (1); } if ((opt_flags & OP_ALLDIRS) && dp->dp_left) { |