praliases.c (e0e1e2d0a318185d3c5a4c56fdf162904b348961) | praliases.c (ffb836234b94e17739bac88bfd7f51f5ae49e3bc) |
---|---|
1/* 2 * Copyright (c) 1998-2001 Sendmail, Inc. and its suppliers. 3 * All rights reserved. 4 * Copyright (c) 1983 Eric P. Allman. All rights reserved. 5 * Copyright (c) 1988, 1993 6 * The Regents of the University of California. All rights reserved. 7 * 8 * By using this file, you agree to the terms and conditions set --- 6 unchanged lines hidden (view full) --- 15 16SM_IDSTR(copyright, 17"@(#) Copyright (c) 1998-2001 Sendmail, Inc. and its suppliers.\n\ 18 All rights reserved.\n\ 19 Copyright (c) 1983 Eric P. Allman. All rights reserved.\n\ 20 Copyright (c) 1988, 1993\n\ 21 The Regents of the University of California. All rights reserved.\n") 22 | 1/* 2 * Copyright (c) 1998-2001 Sendmail, Inc. and its suppliers. 3 * All rights reserved. 4 * Copyright (c) 1983 Eric P. Allman. All rights reserved. 5 * Copyright (c) 1988, 1993 6 * The Regents of the University of California. All rights reserved. 7 * 8 * By using this file, you agree to the terms and conditions set --- 6 unchanged lines hidden (view full) --- 15 16SM_IDSTR(copyright, 17"@(#) Copyright (c) 1998-2001 Sendmail, Inc. and its suppliers.\n\ 18 All rights reserved.\n\ 19 Copyright (c) 1983 Eric P. Allman. All rights reserved.\n\ 20 Copyright (c) 1988, 1993\n\ 21 The Regents of the University of California. All rights reserved.\n") 22 |
23SM_IDSTR(id, "@(#)$Id: praliases.c,v 8.93 2001/09/11 04:05:07 gshapiro Exp $") | 23SM_IDSTR(id, "@(#)$Id: praliases.c,v 8.94 2007/05/11 18:50:36 ca Exp $") |
24 25#include <sys/types.h> 26#include <ctype.h> 27#include <stdlib.h> 28#include <unistd.h> 29#ifdef EX_OK 30# undef EX_OK /* unistd.h may have another use for this */ 31#endif /* EX_OK */ --- 8 unchanged lines hidden (view full) --- 40#include <libsmdb/smdb.h> 41 42static void praliases __P((char *, int, char **)); 43 44uid_t RealUid; 45gid_t RealGid; 46char *RealUserName; 47uid_t RunAsUid; | 24 25#include <sys/types.h> 26#include <ctype.h> 27#include <stdlib.h> 28#include <unistd.h> 29#ifdef EX_OK 30# undef EX_OK /* unistd.h may have another use for this */ 31#endif /* EX_OK */ --- 8 unchanged lines hidden (view full) --- 40#include <libsmdb/smdb.h> 41 42static void praliases __P((char *, int, char **)); 43 44uid_t RealUid; 45gid_t RealGid; 46char *RealUserName; 47uid_t RunAsUid; |
48uid_t RunAsGid; | 48gid_t RunAsGid; |
49char *RunAsUserName; 50int Verbose = 2; 51bool DontInitGroups = false; 52uid_t TrustedUid = 0; 53BITMAP256 DontBlameSendmail; 54 55# define DELIMITERS " ,/" 56# define PATH_SEPARATOR ':' --- 341 unchanged lines hidden --- | 49char *RunAsUserName; 50int Verbose = 2; 51bool DontInitGroups = false; 52uid_t TrustedUid = 0; 53BITMAP256 DontBlameSendmail; 54 55# define DELIMITERS " ,/" 56# define PATH_SEPARATOR ':' --- 341 unchanged lines hidden --- |