* 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.
This commit is contained in:
		@@ -32,7 +32,12 @@
 | 
			
		||||
/*
 | 
			
		||||
 * Exit codes used by shadow programs
 | 
			
		||||
 */
 | 
			
		||||
#define E_SUCCESS       	0	/* success */
 | 
			
		||||
#define E_SUCCESS       	EXIT_SUCCESS	/* success */
 | 
			
		||||
/*
 | 
			
		||||
 * FIXME: other values should differ from EXIT_FAILURE (and EXIT_SUCCESS).
 | 
			
		||||
 *
 | 
			
		||||
 * FIXME: reserve EXIT_FAILURE for internal failures.
 | 
			
		||||
 */
 | 
			
		||||
#define E_NOPERM        	1	/* permission denied */
 | 
			
		||||
#define E_USAGE         	2	/* invalid command syntax */
 | 
			
		||||
#define E_BAD_ARG       	3	/* invalid argument to option */
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user