summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorTobias Stoeckmann <tobias@cvs.openbsd.org>2014-07-08 17:12:38 +0000
committerTobias Stoeckmann <tobias@cvs.openbsd.org>2014-07-08 17:12:38 +0000
commit0ed1c38073e501cc08c2d664396820fe904f718c (patch)
tree05ddb11eb4d25e9893b1bc0304138895a0763836 /usr.sbin
parent5ada708cdd883faebf9ee4b8ffe5c7a0d0a8cf67 (diff)
Cleanup of getopt argument: -p is not supported anymore.
ok deraadt@, dlg@
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/identd/identd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/identd/identd.c b/usr.sbin/identd/identd.c
index 6e628e8df34..a70d165fa41 100644
--- a/usr.sbin/identd/identd.c
+++ b/usr.sbin/identd/identd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: identd.c,v 1.24 2014/01/07 00:11:11 dlg Exp $ */
+/* $OpenBSD: identd.c,v 1.25 2014/07/08 17:12:37 tobias Exp $ */
/*
* Copyright (c) 2013 David Gwynne <dlg@openbsd.org>
@@ -220,7 +220,7 @@ main(int argc, char *argv[])
pid_t parent;
int sibling;
- while ((c = getopt(argc, argv, "46deHhl:Nnp:t:")) != -1) {
+ while ((c = getopt(argc, argv, "46deHhl:Nnt:")) != -1) {
switch (c) {
case '4':
family = AF_INET;