diff options
author | 2001-03-11 13:25:36 +0000 | |
---|---|---|
committer | 2001-03-11 13:25:36 +0000 | |
commit | bd27ee609c5619cefb8fd1694ae831b69aeac0f2 (patch) | |
tree | 82810d8a7700189b6cb087f89fc384ce604261c7 /usr.bin/ssh/key.c | |
parent | add p-flag to tar so that uids/gids and (diff) | |
download | wireguard-openbsd-bd27ee609c5619cefb8fd1694ae831b69aeac0f2.tar.xz wireguard-openbsd-bd27ee609c5619cefb8fd1694ae831b69aeac0f2.zip |
debug
Diffstat (limited to 'usr.bin/ssh/key.c')
-rw-r--r-- | usr.bin/ssh/key.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/key.c b/usr.bin/ssh/key.c index 27910ff0efc..df6bb267944 100644 --- a/usr.bin/ssh/key.c +++ b/usr.bin/ssh/key.c @@ -32,7 +32,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "includes.h" -RCSID("$OpenBSD: key.c,v 1.17 2001/02/04 15:32:24 stevesk Exp $"); +RCSID("$OpenBSD: key.c,v 1.18 2001/03/11 13:25:36 markus Exp $"); #include <openssl/evp.h> @@ -530,7 +530,7 @@ key_type_from_name(char *name) } else if (strcmp(name, "ssh-dss") == 0){ return KEY_DSA; } - debug("key_type_from_name: unknown key type '%s'", name); + debug2("key_type_from_name: unknown key type '%s'", name); return KEY_UNSPEC; } |