mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-04-01 22:58:53 +00:00
- djm@cvs.openbsd.org 2005/01/23 10:18:12
[cipher.c] config option "Ciphers" should be case-sensitive; ok dtucker@
This commit is contained in:
parent
094cd0ba02
commit
660db78af2
@ -9,6 +9,9 @@
|
|||||||
[auth.c]
|
[auth.c]
|
||||||
Log source of connections denied by AllowUsers, DenyUsers, AllowGroups and
|
Log source of connections denied by AllowUsers, DenyUsers, AllowGroups and
|
||||||
DenyGroups. bz #909, ok djm@
|
DenyGroups. bz #909, ok djm@
|
||||||
|
- djm@cvs.openbsd.org 2005/01/23 10:18:12
|
||||||
|
[cipher.c]
|
||||||
|
config option "Ciphers" should be case-sensitive; ok dtucker@
|
||||||
|
|
||||||
20050120
|
20050120
|
||||||
- (dtucker) OpenBSD CVS Sync
|
- (dtucker) OpenBSD CVS Sync
|
||||||
@ -2027,4 +2030,4 @@
|
|||||||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.3622 2005/01/24 10:56:48 dtucker Exp $
|
$Id: ChangeLog,v 1.3623 2005/01/24 10:57:11 dtucker Exp $
|
||||||
|
10
cipher.c
10
cipher.c
@ -35,7 +35,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: cipher.c,v 1.72 2004/12/22 02:13:19 djm Exp $");
|
RCSID("$OpenBSD: cipher.c,v 1.73 2005/01/23 10:18:12 djm Exp $");
|
||||||
|
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
@ -146,7 +146,7 @@ cipher_by_name(const char *name)
|
|||||||
{
|
{
|
||||||
Cipher *c;
|
Cipher *c;
|
||||||
for (c = ciphers; c->name != NULL; c++)
|
for (c = ciphers; c->name != NULL; c++)
|
||||||
if (strcasecmp(c->name, name) == 0)
|
if (strcmp(c->name, name) == 0)
|
||||||
return c;
|
return c;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@ -199,8 +199,10 @@ cipher_number(const char *name)
|
|||||||
Cipher *c;
|
Cipher *c;
|
||||||
if (name == NULL)
|
if (name == NULL)
|
||||||
return -1;
|
return -1;
|
||||||
c = cipher_by_name(name);
|
for (c = ciphers; c->name != NULL; c++)
|
||||||
return (c==NULL) ? -1 : c->number;
|
if (strcasecmp(c->name, name) == 0)
|
||||||
|
return c->number;
|
||||||
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
char *
|
char *
|
||||||
|
Loading…
Reference in New Issue
Block a user