diff options
| author | John Birrell <jb@FreeBSD.org> | 1998-05-15 03:23:28 +0000 |
|---|---|---|
| committer | John Birrell <jb@FreeBSD.org> | 1998-05-15 03:23:28 +0000 |
| commit | 63e7e54aa479045caa961baf7856aedec70a32e8 (patch) | |
| tree | b36409a1e27771499a95c3eef585747b096ad56a /libexec/fingerd | |
| parent | cfc1614a4880433f5adf617cbc883de8986c6271 (diff) | |
Notes
Diffstat (limited to 'libexec/fingerd')
| -rw-r--r-- | libexec/fingerd/fingerd.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libexec/fingerd/fingerd.c b/libexec/fingerd/fingerd.c index 0a38f531f9ec..5626a21d486b 100644 --- a/libexec/fingerd/fingerd.c +++ b/libexec/fingerd/fingerd.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)fingerd.c 8.1 (Berkeley) 6/4/93"; #endif static const char rcsid[] = - "$Id$"; + "$Id: fingerd.c,v 1.10 1997/11/20 07:26:04 charnier Exp $"; #endif /* not lint */ #include <sys/types.h> @@ -100,11 +100,13 @@ main(argc, argv) * Enable server-side Transaction TCP. */ { +#if !defined(__alpha__) /* XXX FIXME */ int one = 1; if (setsockopt(STDOUT_FILENO, IPPROTO_TCP, TCP_NOPUSH, &one, sizeof one) < 0) { logerr("setsockopt(TCP_NOPUSH) failed: %m"); } +#endif } if (!fgets(line, sizeof(line), stdin)) |
