Resolve conflicts from import of sendmail 8.11.5

This commit is contained in:
gshapiro 2001-08-01 01:34:52 +00:00
parent f6658e6b1f
commit 1250170bcc
5 changed files with 19 additions and 12 deletions

View File

@ -19,7 +19,7 @@ static char copyright[] =
#endif /* ! lint */ #endif /* ! lint */
#ifndef lint #ifndef lint
static char id[] = "@(#)$Id: mail.local.c,v 8.143.4.57 2001/02/11 20:08:20 gshapiro Exp $"; static char id[] = "@(#)$Id: mail.local.c,v 8.143.4.58 2001/06/01 05:33:31 gshapiro Exp $";
#endif /* ! lint */ #endif /* ! lint */
/* $FreeBSD$ */ /* $FreeBSD$ */

View File

@ -12,7 +12,7 @@
*/ */
#ifndef lint #ifndef lint
static char id[] = "@(#)$Id: conf.c,v 8.646.2.2.2.86 2001/05/17 18:18:40 ca Exp $"; static char id[] = "@(#)$Id: conf.c,v 8.646.2.2.2.87 2001/07/20 23:56:52 gshapiro Exp $";
#endif /* ! lint */ #endif /* ! lint */
/* $FreeBSD$ */ /* $FreeBSD$ */
@ -4544,9 +4544,7 @@ sm_gethostbyname(name, family)
hbuf, family); hbuf, family);
# if NETINET6 # if NETINET6
h = getipnodebyname(hbuf, family, h = getipnodebyname(hbuf, family, flags, &err);
AI_V4MAPPED|AI_ALL,
&err);
SM_SET_H_ERRNO(err); SM_SET_H_ERRNO(err);
save_errno = errno; save_errno = errno;
# else /* NETINET6 */ # else /* NETINET6 */

View File

@ -10,7 +10,7 @@
* the sendmail distribution. * the sendmail distribution.
* *
* *
* $Id: conf.h,v 8.496.4.43 2001/05/20 22:29:59 gshapiro Exp $ * $Id: conf.h,v 8.496.4.54 2001/07/31 22:30:24 gshapiro Exp $
*/ */
/* $FreeBSD$ */ /* $FreeBSD$ */
@ -490,6 +490,7 @@ typedef int pid_t;
# endif /* ! __svr4__ */ # endif /* ! __svr4__ */
# define GIDSET_T gid_t # define GIDSET_T gid_t
# define USE_SA_SIGACTION 1 /* use sa_sigaction field */ # define USE_SA_SIGACTION 1 /* use sa_sigaction field */
# define HASSTRERROR 1 /* has strerror(3) */
# if _FFR_MILTER # if _FFR_MILTER
# define BROKEN_PTHREAD_SLEEP 1 /* sleep after pthread_create() fails */ # define BROKEN_PTHREAD_SLEEP 1 /* sleep after pthread_create() fails */
# endif /* _FFR_MILTER */ # endif /* _FFR_MILTER */
@ -869,9 +870,11 @@ typedef int pid_t;
#ifdef __bsdi__ #ifdef __bsdi__
# include <paths.h> # include <paths.h>
# define HASUNSETENV 1 /* has the unsetenv(3) call */ # define HASUNSETENV 1 /* has the unsetenv(3) call */
# define HASSETREUID 0 /* BSD-OS has broken setreuid(2) emulation */
# define HASSETSID 1 /* has the setsid(2) POSIX syscall */ # define HASSETSID 1 /* has the setsid(2) POSIX syscall */
# define USESETEUID 1 /* has usable seteuid(2) call */ # define USESETEUID 1 /* has usable seteuid(2) call */
# define HASFCHMOD 1 /* has fchmod(2) syscall */ # define HASFCHMOD 1 /* has fchmod(2) syscall */
# define HASFCHOWN 1 /* has fchown(2) syscall */
# define HASSETLOGIN 1 /* has setlogin(2) */ # define HASSETLOGIN 1 /* has setlogin(2) */
# define HASSNPRINTF 1 /* has snprintf(3) and vsnprintf(3) */ # define HASSNPRINTF 1 /* has snprintf(3) and vsnprintf(3) */
# define HASUNAME 1 /* has uname(2) syscall */ # define HASUNAME 1 /* has uname(2) syscall */
@ -898,6 +901,9 @@ typedef int pid_t;
# if defined(_BSDI_VERSION) && _BSDI_VERSION >= 199701 /* on 3.x */ # if defined(_BSDI_VERSION) && _BSDI_VERSION >= 199701 /* on 3.x */
# define HASSETUSERCONTEXT 1 /* has setusercontext */ # define HASSETUSERCONTEXT 1 /* has setusercontext */
# endif /* defined(_BSDI_VERSION) && _BSDI_VERSION >= 199701 */ # endif /* defined(_BSDI_VERSION) && _BSDI_VERSION >= 199701 */
# if defined(_BSDI_VERSION) && _BSDI_VERSION >= 199910 /* on 4.x */
# define HASURANDOMDEV 1 /* has /dev/urandom(4) */
# endif /* defined(_BSDI_VERSION) && _BSDI_VERSION >= 199910 */
#endif /* __bsdi__ */ #endif /* __bsdi__ */
@ -1720,6 +1726,7 @@ typedef int pid_t;
# include <sys/mkdev.h> # include <sys/mkdev.h>
# define __svr4__ # define __svr4__
# define SYS5SIGNALS 1 # define SYS5SIGNALS 1
# define HASFCHOWN 1 /* has fchown(2) call */
# define HASSETSID 1 # define HASSETSID 1
# define HASSNPRINTF 1 # define HASSNPRINTF 1
# define HASSETREUID 1 # define HASSETREUID 1
@ -2519,6 +2526,10 @@ typedef struct msgb mblk_t;
# define S_IWOTH 0002 # define S_IWOTH 0002
#endif /* ! S_IWOTH */ #endif /* ! S_IWOTH */
#ifndef O_ACCMODE
# define O_ACCMODE (O_RDONLY|O_WRONLY|O_RDWR)
#endif /* ! O_ACCMODE */
/* close-on-exec flag */ /* close-on-exec flag */
#ifndef FD_CLOEXEC #ifndef FD_CLOEXEC
# define FD_CLOEXEC 1 # define FD_CLOEXEC 1

View File

@ -12,7 +12,7 @@
*/ */
#ifndef lint #ifndef lint
static char id[] = "@(#)$Id: err.c,v 8.120.4.2 2001/05/03 17:24:06 gshapiro Exp $"; static char id[] = "@(#)$Id: err.c,v 8.120.4.3 2001/05/30 00:22:26 gshapiro Exp $";
#endif /* ! lint */ #endif /* ! lint */
/* $FreeBSD$ */ /* $FreeBSD$ */
@ -159,8 +159,6 @@ syserr(fmt, va_alist)
#ifdef ESTALE #ifdef ESTALE
case ESTALE: case ESTALE:
#endif /* ESTALE */ #endif /* ESTALE */
printopenfds(TRUE); printopenfds(TRUE);
mci_dump_all(TRUE); mci_dump_all(TRUE);
break; break;

View File

@ -1,4 +1,4 @@
.\" Copyright (c) 1999-2000 Sendmail, Inc. and its suppliers. .\" Copyright (c) 1999-2001 Sendmail, Inc. and its suppliers.
.\" All rights reserved. .\" All rights reserved.
.\" Copyright (c) 1985, 1987, 1990, 1991, 1993 .\" Copyright (c) 1985, 1987, 1990, 1991, 1993
.\" The Regents of the University of California. All rights reserved. .\" The Regents of the University of California. All rights reserved.
@ -9,11 +9,11 @@
.\" the sendmail distribution. .\" the sendmail distribution.
.\" .\"
.\" .\"
.\" $Id: vacation.1,v 8.11.4.6 2000/12/29 18:12:23 gshapiro Exp $ .\" $Id: vacation.1,v 8.11.4.8 2001/07/20 04:19:38 gshapiro Exp $
.\" .\"
.\" $FreeBSD$ .\" $FreeBSD$
.\" .\"
.TH VACATION 1 "$Date: 2000/12/29 18:12:23 $" .TH VACATION 1 "$Date: 2001/07/20 04:19:38 $"
.SH NAME .SH NAME
vacation vacation
\- return ``I am not here'' indication \- return ``I am not here'' indication