add Berkeley specific header
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Fri, 25 Mar 1988 01:04:27 +0000 (17:04 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Fri, 25 Mar 1988 01:04:27 +0000 (17:04 -0800)
SCCS-vsn: usr.sbin/sendmail/src/daemon.c 5.24

usr/src/usr.sbin/sendmail/src/daemon.c

index 1f4f2e5..fe886d0 100644 (file)
@@ -1,23 +1,32 @@
 /*
 /*
-**  Sendmail
-**  Copyright (c) 1983  Eric P. Allman
-**  Berkeley, California
-**
-**  Copyright (c) 1983 Regents of the University of California.
-**  All rights reserved.  The Berkeley software License Agreement
-**  specifies the terms and conditions for redistribution.
-*/
-
+ * Copyright (c) 1988 Regents of the University of California.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms are permitted
+ * provided that this notice is preserved and that due credit is given
+ * to the University of California at Berkeley. The name of the University
+ * may not be used to endorse or promote products derived from this
+ * software without specific prior written permission. This software
+ * is provided ``as is'' without express or implied warranty.
+ *
+ *  Sendmail
+ *  Copyright (c) 1983  Eric P. Allman
+ *  Berkeley, California
+ */
 
 # include <errno.h>
 # include "sendmail.h"
 # include <sys/mx.h>
 
 
 # include <errno.h>
 # include "sendmail.h"
 # include <sys/mx.h>
 
-# ifndef DAEMON
-# ifndef lint
-static char    SccsId[] = "@(#)daemon.c        5.23 (Berkeley) %G%     (w/o daemon mode)";
-# endif not lint
-# else
+#ifndef lint
+#ifdef DAEMON
+static char sccsid[] = "@(#)daemon.c   5.24 (Berkeley) %G% (with daemon mode)";
+#else
+static char sccsid[] = "@(#)daemon.c   5.24 (Berkeley) %G% (without daemon mode)";
+#endif
+#endif /* not lint */
+
+#ifdef DAEMON
 
 # include <netdb.h>
 # include <sys/signal.h>
 
 # include <netdb.h>
 # include <sys/signal.h>
@@ -25,12 +34,6 @@ static char  SccsId[] = "@(#)daemon.c        5.23 (Berkeley) %G%     (w/o daemon mode)";
 # include <sys/time.h>
 # include <sys/resource.h>
 
 # include <sys/time.h>
 # include <sys/resource.h>
 
-# ifndef lint
-static char    SccsId[] = "@(#)daemon.c        5.23 (Berkeley) %G% (with daemon mode)";
-# endif not lint
-# endif
-
-# ifdef DAEMON
 /*
 **  DAEMON.C -- routines to use when running as a daemon.
 **
 /*
 **  DAEMON.C -- routines to use when running as a daemon.
 **