summaryrefslogtreecommitdiffstats
path: root/usr.sbin/identd
diff options
context:
space:
mode:
authortobias <tobias@openbsd.org>2014-07-08 17:12:37 +0000
committertobias <tobias@openbsd.org>2014-07-08 17:12:37 +0000
commitcb94ec52c11bdcedc754218e0c4b832f9a3ace7f (patch)
tree2a153e58e7177968bede43093c73431d9e6e23c7 /usr.sbin/identd
parentdon't really bother cleaning up the callback, it will go away soon enough (diff)
downloadwireguard-openbsd-cb94ec52c11bdcedc754218e0c4b832f9a3ace7f.tar.xz
wireguard-openbsd-cb94ec52c11bdcedc754218e0c4b832f9a3ace7f.zip
Cleanup of getopt argument: -p is not supported anymore.
ok deraadt@, dlg@
Diffstat (limited to 'usr.sbin/identd')
-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;