Sort #includes. Add rcsid. Use full pathname in SYNOPSIS section.

This commit is contained in:
charnier 1997-12-04 07:20:45 +00:00
parent 0bf80e493d
commit 4fcce00669
2 changed files with 15 additions and 13 deletions

View File

@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)rshd.8 8.1 (Berkeley) 6/4/93
.\" $Id$
.\" $Id: uucpd.8,v 1.5 1997/02/22 14:22:39 peter Exp $
.\"
.Dd Feb 18, 1996
.Dt UUCPD 8
@ -39,7 +39,7 @@
.Nm uucpd
.Nd uucp network server
.Sh SYNOPSIS
.Nm uucpd
.Nm /usr/libexec/uucpd
.Sh DESCRIPTION
.Nm Uucpd
is the server for supporting uucp connections over networks.
@ -63,6 +63,6 @@ for the rest of the transaction.
.El
.Sh HISTORY
The
.Nm uucpd
.Nm
utility first appeared in
.Bx 4.3 .

View File

@ -32,18 +32,20 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: uucpd.c,v 1.12 1997/04/08 12:32:17 davidn Exp $
*/
#ifndef lint
static char copyright[] =
static const char copyright[] =
"@(#) Copyright (c) 1985, 1993\n\
The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */
#ifndef lint
#if 0
static char sccsid[] = "@(#)uucpd.c 8.1 (Berkeley) 6/4/93";
#endif
static const char rcsid[] =
"$Id$";
#endif /* not lint */
/*
@ -58,18 +60,18 @@ static char sccsid[] = "@(#)uucpd.c 8.1 (Berkeley) 6/4/93";
#include <sys/param.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <signal.h>
#include <fcntl.h>
#include <time.h>
#include <pwd.h>
#include <unistd.h>
#include <errno.h>
#include <fcntl.h>
#include <netdb.h>
#include <pwd.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <utmp.h>
#include <syslog.h>
#include <time.h>
#include <unistd.h>
#include <utmp.h>
#include <sys/param.h>
#include "pathnames.h"