diff options
author | 2000-04-26 15:59:57 +0000 | |
---|---|---|
committer | 2000-04-26 15:59:57 +0000 | |
commit | e2b84c066bab86df8ffb795a2ec487f52ca333a6 (patch) | |
tree | 2159866d6297c19f521879c71f6d6bc9071c597e | |
parent | Change the name of mail's send() function to sendmessages() to (diff) | |
download | wireguard-openbsd-e2b84c066bab86df8ffb795a2ec487f52ca333a6.tar.xz wireguard-openbsd-e2b84c066bab86df8ffb795a2ec487f52ca333a6.zip |
Minor comment changes:
o utmp lives in /var/run, not /etc
o document EX_CONFIG
-rw-r--r-- | include/sysexits.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/include/sysexits.h b/include/sysexits.h index 924724446ef..b6bda623d34 100644 --- a/include/sysexits.h +++ b/include/sysexits.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sysexits.h,v 1.2 1997/09/21 10:45:56 niklas Exp $ */ +/* $OpenBSD: sysexits.h,v 1.3 2000/04/26 15:59:57 millert Exp $ */ /* $NetBSD: sysexits.h,v 1.4 1994/10/26 00:56:33 cgd Exp $ */ /* @@ -78,7 +78,7 @@ * fork", "cannot create pipe", or the like. It includes * things like getuid returning a user that does not * exist in the passwd file. - * EX_OSFILE -- Some system file (e.g., /etc/passwd, /etc/utmp, + * EX_OSFILE -- Some system file (e.g., /etc/passwd, /var/run/utmp, * etc.) does not exist, cannot be opened, or has some * sort of error (e.g., syntax error). * EX_CANTCREAT -- A (user specified) output file cannot be @@ -92,8 +92,10 @@ * was "not possible" during a protocol exchange. * EX_NOPERM -- You did not have sufficient permission to * perform the operation. This is not intended for - * file system problems, which should use NOINPUT or - * CANTCREAT, but rather for higher level permissions. + * file system problems, which should use EX_NOINPUT or + * EX_CANTCREAT, but rather for higher level permissions. + * EX_CONFIG -- Something was found in an unconfigured or + * misconfigured state. */ #define EX_OK 0 /* successful termination */ |