[BACK]Return to sysexits.h CVS log [TXT][DIR] Up to [local] / src / include

Diff for /src/include/sysexits.h between version 1.2 and 1.3

version 1.2, 1997/09/21 10:45:56 version 1.3, 2000/04/26 15:59:57
Line 78 
Line 78 
  *              fork", "cannot create pipe", or the like.  It includes   *              fork", "cannot create pipe", or the like.  It includes
  *              things like getuid returning a user that does not   *              things like getuid returning a user that does not
  *              exist in the passwd file.   *              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   *              etc.) does not exist, cannot be opened, or has some
  *              sort of error (e.g., syntax error).   *              sort of error (e.g., syntax error).
  *      EX_CANTCREAT -- A (user specified) output file cannot be   *      EX_CANTCREAT -- A (user specified) output file cannot be
Line 92 
Line 92 
  *              was "not possible" during a protocol exchange.   *              was "not possible" during a protocol exchange.
  *      EX_NOPERM -- You did not have sufficient permission to   *      EX_NOPERM -- You did not have sufficient permission to
  *              perform the operation.  This is not intended for   *              perform the operation.  This is not intended for
  *              file system problems, which should use NOINPUT or   *              file system problems, which should use EX_NOINPUT or
  *              CANTCREAT, but rather for higher level permissions.   *              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 */  #define EX_OK           0       /* successful termination */

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3