diff options
author | 2012-07-11 12:00:21 +0000 | |
---|---|---|
committer | 2012-07-11 12:00:21 +0000 | |
commit | adb67b24e3f5efc73a02508e6abb0d5a58211668 (patch) | |
tree | 038345b2005804401368e103b1908e82f1b8499f | |
parent | -t pftag doesnt do anything, trim the getopt side of it until i get to it. (diff) | |
download | wireguard-openbsd-adb67b24e3f5efc73a02508e6abb0d5a58211668.tar.xz wireguard-openbsd-adb67b24e3f5efc73a02508e6abb0d5a58211668.zip |
fix getopt to not eat t
-rw-r--r-- | usr.sbin/tftp-proxy/tftp-proxy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/tftp-proxy/tftp-proxy.c b/usr.sbin/tftp-proxy/tftp-proxy.c index 9acef373401..4fb3eb568e1 100644 --- a/usr.sbin/tftp-proxy/tftp-proxy.c +++ b/usr.sbin/tftp-proxy/tftp-proxy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tftp-proxy.c,v 1.2 2012/07/11 11:51:35 dlg Exp $ +/* $OpenBSD: tftp-proxy.c,v 1.3 2012/07/11 12:00:21 dlg Exp $ * * Copyright (c) 2005 DLS Internet Services * Copyright (c) 2004, 2005 Camiel Dobbelaar, <cd@sentia.nl> @@ -195,7 +195,7 @@ main(int argc, char *argv[]) int pair[2]; - while ((c = getopt(argc, argv, "46dvl:p:t:w:")) != -1) { + while ((c = getopt(argc, argv, "46dvl:p:w:")) != -1) { switch (c) { case '4': family = AF_INET; |