diff options
author | tv <tv@pkgsrc.org> | 2004-04-27 01:50:04 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2004-04-27 01:50:04 +0000 |
commit | d03659a0e788a0f0666972951e572fd7c827149b (patch) | |
tree | cf18eb82883535735c588931fff9dfd7c234e9ba /sysutils/user_interix | |
parent | fe3d504d5e67afa5f3109fb92e0b019c308f2bb5 (diff) | |
download | pkgsrc-d03659a0e788a0f0666972951e572fd7c827149b.tar.gz |
Consistency nit.
Diffstat (limited to 'sysutils/user_interix')
-rwxr-xr-x | sysutils/user_interix/files/groupadd.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysutils/user_interix/files/groupadd.sh b/sysutils/user_interix/files/groupadd.sh index e50c9a58c47..db97e7f31ce 100755 --- a/sysutils/user_interix/files/groupadd.sh +++ b/sysutils/user_interix/files/groupadd.sh @@ -1,5 +1,5 @@ #!/bin/ksh -# $NetBSD: groupadd.sh,v 1.1.1.1 2004/04/27 01:45:22 tv Exp $ +# $NetBSD: groupadd.sh,v 1.2 2004/04/27 01:50:04 tv Exp $ export PATH=/bin:/usr/contrib/win32/bin @@ -17,7 +17,7 @@ run_cmd () { while getopts 'g:ov' f; do case $f in g) echo "$0: numeric gid cannot be set manually; ignoring" >&2;; - o) echo "$0: cannot reuse numeric gid of another group; aborting" >&2; exit 2;; + o) echo "$0: cannot reuse numeric gid of another group; aborting" >&2; exit 1;; v) verbose=true;; \?) show_usage;; esac |