summaryrefslogtreecommitdiffstats
path: root/usr.sbin/inetd
diff options
context:
space:
mode:
authorsobrado <sobrado@openbsd.org>2008-06-28 10:54:45 +0000
committersobrado <sobrado@openbsd.org>2008-06-28 10:54:45 +0000
commit4463de31c1a9c34faaa4498e2cb252926ef0bcf9 (patch)
tree7717ed52fbf7698b4b480e8a9a2daf8883fae296 /usr.sbin/inetd
parentspelling fixes (diff)
downloadwireguard-openbsd-4463de31c1a9c34faaa4498e2cb252926ef0bcf9.tar.xz
wireguard-openbsd-4463de31c1a9c34faaa4498e2cb252926ef0bcf9.zip
add an underscore to argument name.
Diffstat (limited to 'usr.sbin/inetd')
-rw-r--r--usr.sbin/inetd/inetd.86
-rw-r--r--usr.sbin/inetd/inetd.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/usr.sbin/inetd/inetd.8 b/usr.sbin/inetd/inetd.8
index 085bda373cb..4134844b361 100644
--- a/usr.sbin/inetd/inetd.8
+++ b/usr.sbin/inetd/inetd.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: inetd.8,v 1.32 2008/01/06 16:04:34 jmc Exp $
+.\" $OpenBSD: inetd.8,v 1.33 2008/06/28 10:54:45 sobrado Exp $
.\" Copyright (c) 1985, 1991 The Regents of the University of California.
.\" All rights reserved.
.\"
@@ -28,7 +28,7 @@
.\"
.\" from: @(#)inetd.8 6.7 (Berkeley) 3/16/91
.\"
-.Dd $Mdocdate: January 6 2008 $
+.Dd $Mdocdate: June 28 2008 $
.Dt INETD 8
.Os
.Sh NAME
@@ -39,7 +39,7 @@
.Nm inetd
.Op Fl d
.Op Fl R Ar rate
-.Op Ar configuration file
+.Op Ar configuration_file
.Sh DESCRIPTION
.Nm inetd
should be run at boot time by
diff --git a/usr.sbin/inetd/inetd.c b/usr.sbin/inetd/inetd.c
index 726134d0e59..8031cec7a22 100644
--- a/usr.sbin/inetd/inetd.c
+++ b/usr.sbin/inetd/inetd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: inetd.c,v 1.127 2008/06/04 18:11:35 miod Exp $ */
+/* $OpenBSD: inetd.c,v 1.128 2008/06/28 10:54:45 sobrado Exp $ */
/*
* Copyright (c) 1983,1991 The Regents of the University of California.
@@ -37,7 +37,7 @@ char copyright[] =
#ifndef lint
/*static const char sccsid[] = "from: @(#)inetd.c 5.30 (Berkeley) 6/3/91";*/
-static const char rcsid[] = "$OpenBSD: inetd.c,v 1.127 2008/06/04 18:11:35 miod Exp $";
+static const char rcsid[] = "$OpenBSD: inetd.c,v 1.128 2008/06/28 10:54:45 sobrado Exp $";
#endif /* not lint */
/*
@@ -359,7 +359,7 @@ main(int argc, char *argv[])
case '?':
default:
fprintf(stderr,
- "usage: %s [-d] [-R rate] [configuration file]\n",
+ "usage: %s [-d] [-R rate] [configuration_file]\n",
progname);
exit(1);
}