diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2011-03-24 22:14:55 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2011-03-24 22:14:55 +0000 |
commit | c01d4d94c4e5578b553bf9bfbfb153e27c42c84d (patch) | |
tree | 2c39ad5fd0f89dfb073fb7291fd9e25c6043af54 /usr.bin/ssh | |
parent | bde696652fb694c0aa3d35c4871579506c1f0b1c (diff) |
use strcasecmp() for "clear" cert permission option also; ok djm
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/ssh-keygen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-keygen.c b/usr.bin/ssh/ssh-keygen.c index 95aa40f1d2a..d94dffe936c 100644 --- a/usr.bin/ssh/ssh-keygen.c +++ b/usr.bin/ssh/ssh-keygen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-keygen.c,v 1.207 2011/03/23 16:50:04 stevesk Exp $ */ +/* $OpenBSD: ssh-keygen.c,v 1.208 2011/03/24 22:14:54 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -1701,7 +1701,7 @@ add_cert_option(char *opt) { char *val; - if (strcmp(opt, "clear") == 0) + if (strcasecmp(opt, "clear") == 0) certflags_flags = 0; else if (strcasecmp(opt, "no-x11-forwarding") == 0) certflags_flags &= ~CERTOPT_X_FWD; |