From: djm Date: Sun, 24 May 2015 23:39:16 +0000 (+0000) Subject: add missing 'c' option to getopt(), case statement was already X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=0e9962f5d73fa54539b21770288d25f17d7dc699;p=openbsd add missing 'c' option to getopt(), case statement was already there; from Felix Bolte --- diff --git a/usr.bin/ssh/sshd.c b/usr.bin/ssh/sshd.c index d8ea87599d3..b40dd78ab75 100644 --- a/usr.bin/ssh/sshd.c +++ b/usr.bin/ssh/sshd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshd.c,v 1.449 2015/05/21 06:43:31 djm Exp $ */ +/* $OpenBSD: sshd.c,v 1.450 2015/05/24 23:39:16 djm Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -1411,7 +1411,8 @@ main(int ac, char **av) initialize_server_options(&options); /* Parse command-line arguments. */ - while ((opt = getopt(ac, av, "f:p:b:k:h:g:u:o:C:dDeE:iqrtQRT46")) != -1) { + while ((opt = getopt(ac, av, + "C:E:b:c:f:g:h:k:o:p:u:46DQRTdeiqrt")) != -1) { switch (opt) { case '4': options.address_family = AF_INET;