summaryrefslogtreecommitdiffstats
path: root/libexec/rlogind/rlogind.c
diff options
context:
space:
mode:
authordes <des@FreeBSD.org>2002-05-08 00:47:01 +0000
committerdes <des@FreeBSD.org>2002-05-08 00:47:01 +0000
commit84dfbe4ad59351b428fe08c0e87d8cca873fbd90 (patch)
treea9177752eedd56dd4dc85c2061db80a29c678464 /libexec/rlogind/rlogind.c
parent6a749b9ddc465ad14d6cf3738355ac8204efc6bc (diff)
downloadFreeBSD-src-84dfbe4ad59351b428fe08c0e87d8cca873fbd90.zip
FreeBSD-src-84dfbe4ad59351b428fe08c0e87d8cca873fbd90.tar.gz
Use <paths.h> rather than "pathnames.h", and fix a couple of whitespace nits.
Sponsored by: DARPA, NAI Labs
Diffstat (limited to 'libexec/rlogind/rlogind.c')
-rw-r--r--libexec/rlogind/rlogind.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/libexec/rlogind/rlogind.c b/libexec/rlogind/rlogind.c
index 20db3f1..cdc62a6 100644
--- a/libexec/rlogind/rlogind.c
+++ b/libexec/rlogind/rlogind.c
@@ -1,6 +1,13 @@
/*-
* Copyright (c) 1983, 1988, 1989, 1993
* The Regents of the University of California. All rights reserved.
+ * Copyright (c) 2002 Networks Associates Technology, Inc.
+ * All rights reserved.
+ *
+ * Portions of this software were developed for the FreeBSD Project by
+ * ThinkSec AS and NAI Labs, the Security Research Division of Network
+ * Associates, Inc. under DARPA/SPAWAR contract N66001-01-C-8035
+ * ("CBOSS"), as part of the DARPA CHATS research program.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -72,13 +79,13 @@ static const char rcsid[] =
#include <errno.h>
#include <libutil.h>
+#include <paths.h>
#include <pwd.h>
#include <syslog.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
-#include "pathnames.h"
#ifndef TIOCPKT_WINDOW
@@ -177,7 +184,7 @@ main(int argc, char *argv[])
if (no_delay &&
setsockopt(0, IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on)) < 0)
syslog(LOG_WARNING, "setsockopt (TCP_NODELAY): %m");
- if (from.su_family == AF_INET)
+ if (from.su_family == AF_INET)
{
on = IPTOS_LOWDELAY;
if (setsockopt(0, IPPROTO_IP, IP_TOS, (char *)&on, sizeof(int)) < 0)
@@ -238,7 +245,7 @@ doit(int f, union sockunion *fromp)
}
#ifdef IP_OPTIONS
if (fromp->su_family == AF_INET)
- {
+ {
u_char optbuf[BUFSIZ/3];
int optsize = sizeof(optbuf), ipproto, i;
struct protoent *ip;
OpenPOWER on IntegriCloud