diff options
author | charnier <charnier@FreeBSD.org> | 1997-12-04 07:20:45 +0000 |
---|---|---|
committer | charnier <charnier@FreeBSD.org> | 1997-12-04 07:20:45 +0000 |
commit | 4fcce006699cde380a74f12b8f29df9b1f11bad0 (patch) | |
tree | 70268ec33ffb856e31543e1a3e6f5193e37c7b60 /libexec/uucpd | |
parent | 0bf80e493d57b96758badf8b6ae6842083148204 (diff) | |
download | FreeBSD-src-4fcce006699cde380a74f12b8f29df9b1f11bad0.zip FreeBSD-src-4fcce006699cde380a74f12b8f29df9b1f11bad0.tar.gz |
Sort #includes. Add rcsid. Use full pathname in SYNOPSIS section.
Diffstat (limited to 'libexec/uucpd')
-rw-r--r-- | libexec/uucpd/uucpd.8 | 6 | ||||
-rw-r--r-- | libexec/uucpd/uucpd.c | 20 |
2 files changed, 14 insertions, 12 deletions
diff --git a/libexec/uucpd/uucpd.8 b/libexec/uucpd/uucpd.8 index 654f65e..3b964e3 100644 --- a/libexec/uucpd/uucpd.8 +++ b/libexec/uucpd/uucpd.8 @@ -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 . diff --git a/libexec/uucpd/uucpd.c b/libexec/uucpd/uucpd.c index f95b388..4975100 100644 --- a/libexec/uucpd/uucpd.c +++ b/libexec/uucpd/uucpd.c @@ -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 <errno.h> #include <fcntl.h> -#include <time.h> +#include <netdb.h> #include <pwd.h> -#include <unistd.h> -#include <errno.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" |