2008-04-27 06:10:09 +05:30
|
|
|
/*
|
2021-12-05 21:05:27 +05:30
|
|
|
* SPDX-FileCopyrightText: 2005 - 2006, Tomasz Kłoczko
|
2008-04-27 06:10:09 +05:30
|
|
|
*
|
2021-12-05 21:05:27 +05:30
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
2008-04-27 06:10:09 +05:30
|
|
|
*/
|
|
|
|
|
2007-11-11 05:16:11 +05:30
|
|
|
/* $Id$ */
|
2007-10-07 17:16:52 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Exit codes used by shadow programs
|
|
|
|
*/
|
* lib/exitcodes.h: Define E_SUCCESS as EXIT_SUCCESS. Added FIXMEs.
* libmisc/chowntty.c, libmisc/rlogin.c, libmisc/sub.c,
src/newusers.c, libmisc/sulog.c, libmisc/system.c, src/logoutd.c,
src/groups.c, src/id.c, lib/encrypt.c, libmisc/audit_help.c,
libmisc/limits.c: Return EXIT_FAILURE instead of 1, and
EXIT_SUCCESS instead of 0.
* libmisc/audit_help.c: Replace an fprintf() by fputs().
* libmisc/audit_help.c: Remove documentation of the audit_logger
returned values. The function returns void.
* libmisc/system.c: Only return status if waitpid succeeded.
Return -1 otherwise.
2009-05-01 02:38:49 +05:30
|
|
|
#define E_SUCCESS EXIT_SUCCESS /* success */
|
|
|
|
/*
|
|
|
|
* FIXME: other values should differ from EXIT_FAILURE (and EXIT_SUCCESS).
|
|
|
|
*
|
|
|
|
* FIXME: reserve EXIT_FAILURE for internal failures.
|
|
|
|
*/
|
2007-10-07 17:17:01 +05:30
|
|
|
#define E_NOPERM 1 /* permission denied */
|
|
|
|
#define E_USAGE 2 /* invalid command syntax */
|
|
|
|
#define E_BAD_ARG 3 /* invalid argument to option */
|
|
|
|
#define E_PASSWD_NOTFOUND 14 /* not found password file */
|
|
|
|
#define E_SHADOW_NOTFOUND 15 /* not found shadow password file */
|
|
|
|
#define E_GROUP_NOTFOUND 16 /* not found group file */
|
|
|
|
#define E_GSHADOW_NOTFOUND 17 /* not found shadow group file */
|
2007-10-07 17:17:22 +05:30
|
|
|
#define E_CMD_NOEXEC 126 /* can't run command/shell */
|
|
|
|
#define E_CMD_NOTFOUND 127 /* can't find command/shell to run */
|