diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-07-23 04:14:47 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-07-23 04:14:47 +0000 |
commit | ad25d15637fad7277bbe41b3c91e188dfed99981 (patch) | |
tree | 6e6742d097ee48db78c30c200ae25a7db4778fc2 /usr.bin/skeyinfo | |
parent | c928a15892bc2a8df7d4c1575d8229cccf52880d (diff) |
exit() not return()
Diffstat (limited to 'usr.bin/skeyinfo')
-rw-r--r-- | usr.bin/skeyinfo/skeyinfo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/skeyinfo/skeyinfo.c b/usr.bin/skeyinfo/skeyinfo.c index 0f3a94b9ec9..4b1085eb152 100644 --- a/usr.bin/skeyinfo/skeyinfo.c +++ b/usr.bin/skeyinfo/skeyinfo.c @@ -1,4 +1,4 @@ -/* $OpenBSD: skeyinfo.c,v 1.1 1997/07/23 04:10:53 millert Exp $ */ +/* $OpenBSD: skeyinfo.c,v 1.2 1997/07/23 04:14:46 millert Exp $ */ /* * Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> @@ -105,7 +105,7 @@ main(argc, argv) warnx("%s is not listed in /etc/skeykeys", name); } - return(errs); + exit(errs); } void |