Deleted Added
full compact
editmap.c (141858) editmap.c (173340)
1/*
2 * Copyright (c) 1998-2002, 2004 Sendmail, Inc. and its suppliers.
3 * All rights reserved.
4 * Copyright (c) 1992 Eric P. Allman. All rights reserved.
5 * Copyright (c) 1992, 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

--- 8 unchanged lines hidden (view full) ---

17"@(#) Copyright (c) 1998-2001 Sendmail, Inc. and its suppliers.\n\
18 All rights reserved.\n\
19 Copyright (c) 1992 Eric P. Allman. All rights reserved.\n\
20 Copyright (c) 1992, 1993\n\
21 The Regents of the University of California. All rights reserved.\n";
22#endif /* ! lint */
23
24#ifndef lint
1/*
2 * Copyright (c) 1998-2002, 2004 Sendmail, Inc. and its suppliers.
3 * All rights reserved.
4 * Copyright (c) 1992 Eric P. Allman. All rights reserved.
5 * Copyright (c) 1992, 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

--- 8 unchanged lines hidden (view full) ---

17"@(#) Copyright (c) 1998-2001 Sendmail, Inc. and its suppliers.\n\
18 All rights reserved.\n\
19 Copyright (c) 1992 Eric P. Allman. All rights reserved.\n\
20 Copyright (c) 1992, 1993\n\
21 The Regents of the University of California. All rights reserved.\n";
22#endif /* ! lint */
23
24#ifndef lint
25SM_UNUSED(static char id[]) = "@(#)$Id: editmap.c,v 1.24 2004/08/03 18:40:10 ca Exp $";
25SM_UNUSED(static char id[]) = "@(#)$Id: editmap.c,v 1.25 2007/05/11 18:50:35 ca Exp $";
26#endif /* ! lint */
27
28
29#include <sys/types.h>
30#ifndef ISC_UNIX
31# include <sys/file.h>
32#endif /* ! ISC_UNIX */
33#include <ctype.h>

--- 7 unchanged lines hidden (view full) ---

41#include <sendmail/sendmail.h>
42#include <sendmail/pathnames.h>
43#include <libsmdb/smdb.h>
44
45uid_t RealUid;
46gid_t RealGid;
47char *RealUserName;
48uid_t RunAsUid;
26#endif /* ! lint */
27
28
29#include <sys/types.h>
30#ifndef ISC_UNIX
31# include <sys/file.h>
32#endif /* ! ISC_UNIX */
33#include <ctype.h>

--- 7 unchanged lines hidden (view full) ---

41#include <sendmail/sendmail.h>
42#include <sendmail/pathnames.h>
43#include <libsmdb/smdb.h>
44
45uid_t RealUid;
46gid_t RealGid;
47char *RealUserName;
48uid_t RunAsUid;
49uid_t RunAsGid;
49gid_t RunAsGid;
50char *RunAsUserName;
51int Verbose = 2;
52bool DontInitGroups = false;
53uid_t TrustedUid = 0;
54BITMAP256 DontBlameSendmail;
55
56#define BUFSIZE 1024
57#define ISSEP(c) (isascii(c) && isspace(c))

--- 365 unchanged lines hidden ---
50char *RunAsUserName;
51int Verbose = 2;
52bool DontInitGroups = false;
53uid_t TrustedUid = 0;
54BITMAP256 DontBlameSendmail;
55
56#define BUFSIZE 1024
57#define ISSEP(c) (isascii(c) && isspace(c))

--- 365 unchanged lines hidden ---