summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-08-02 06:47:42 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-08-02 06:47:42 +0000
commitd9ebf74c3c5809ffac22d2928211a127bd0d3918 (patch)
tree9b5f7115331e0a2b8e39ff9dd3ccbdf4746147b0
parenta76d76d5b27889d7d0bec7d3f80c2b631e49bb49 (diff)
indent
-rw-r--r--usr.sbin/inetd/inetd.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.sbin/inetd/inetd.c b/usr.sbin/inetd/inetd.c
index af955521a38..55086432dc0 100644
--- a/usr.sbin/inetd/inetd.c
+++ b/usr.sbin/inetd/inetd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: inetd.c,v 1.15 1996/08/02 06:13:26 deraadt Exp $ */
+/* $OpenBSD: inetd.c,v 1.16 1996/08/02 06:47:41 deraadt Exp $ */
/* $NetBSD: inetd.c,v 1.11 1996/02/22 11:14:41 mycroft Exp $ */
/*
* Copyright (c) 1983,1991 The Regents of the University of California.
@@ -41,7 +41,7 @@ char copyright[] =
#ifndef lint
/*static char sccsid[] = "from: @(#)inetd.c 5.30 (Berkeley) 6/3/91";*/
-static char rcsid[] = "$OpenBSD: inetd.c,v 1.15 1996/08/02 06:13:26 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: inetd.c,v 1.16 1996/08/02 06:47:41 deraadt Exp $";
#endif /* not lint */
/*
@@ -236,16 +236,16 @@ struct biltin {
void (*bi_fn) __P((int, struct servtab *));
} biltins[] = {
/* Echo received data */
- { "echo", SOCK_STREAM, 1, 0, echo_stream },
- { "echo", SOCK_DGRAM, 0, 0, echo_dg },
+ { "echo", SOCK_STREAM, 1, 0, echo_stream },
+ { "echo", SOCK_DGRAM, 0, 0, echo_dg },
/* Internet /dev/null */
{ "discard", SOCK_STREAM, 1, 0, discard_stream },
{ "discard", SOCK_DGRAM, 0, 0, discard_dg },
/* Return 32 bit time since 1900 */
- { "time", SOCK_STREAM, 0, 0, machtime_stream },
- { "time", SOCK_DGRAM, 0, 0, machtime_dg },
+ { "time", SOCK_STREAM, 0, 0, machtime_stream },
+ { "time", SOCK_DGRAM, 0, 0, machtime_dg },
/* Return human-readable time */
{ "daytime", SOCK_STREAM, 0, 0, daytime_stream },