diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | authfile.c | 5 |
2 files changed, 8 insertions, 1 deletions
@@ -62,6 +62,10 @@ | |||
62 | a TTY is fatal. | 62 | a TTY is fatal. |
63 | 63 | ||
64 | ok markus@ | 64 | ok markus@ |
65 | - djm@cvs.openbsd.org 2011/05/10 05:46:46 | ||
66 | [authfile.c] | ||
67 | despam debug() logs by detecting that we are trying to load a private key | ||
68 | in key_try_load_public() and returning early; ok markus@ | ||
65 | 69 | ||
66 | 20110510 | 70 | 20110510 |
67 | - (dtucker) [openbsd-compat/openssl-compat.{c,h}] Bug #1882: fix | 71 | - (dtucker) [openbsd-compat/openssl-compat.{c,h}] Bug #1882: fix |
diff --git a/authfile.c b/authfile.c index 608d1d06f..7a5b65142 100644 --- a/authfile.c +++ b/authfile.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: authfile.c,v 1.88 2011/05/04 21:15:29 djm Exp $ */ | 1 | /* $OpenBSD: authfile.c,v 1.89 2011/05/10 05:46:46 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
@@ -765,6 +765,9 @@ key_try_load_public(Key *k, const char *filename, char **commentp) | |||
765 | case '\0': | 765 | case '\0': |
766 | continue; | 766 | continue; |
767 | } | 767 | } |
768 | /* Abort loading if this looks like a private key */ | ||
769 | if (strncmp(cp, "-----BEGIN", 10) == 0) | ||
770 | break; | ||
768 | /* Skip leading whitespace. */ | 771 | /* Skip leading whitespace. */ |
769 | for (; *cp && (*cp == ' ' || *cp == '\t'); cp++) | 772 | for (; *cp && (*cp == ' ' || *cp == '\t'); cp++) |
770 | ; | 773 | ; |