diff options
author | djm <djm> | 2003-04-09 10:59:48 +0000 |
---|---|---|
committer | djm <djm> | 2003-04-09 10:59:48 +0000 |
commit | 411917d70b48eac07467b4f6d3e425026db4e917 (patch) | |
tree | f3daac52afa68b4d67db59327f0bb3dfcf85b1d7 /auth2-pubkey.c | |
parent | c71e9e59b6d3ab8706dd5251f33061739329218b (diff) | |
download | openssh-411917d70b48eac07467b4f6d3e425026db4e917.tar.gz |
*** empty log message ***
Diffstat (limited to 'auth2-pubkey.c')
-rw-r--r-- | auth2-pubkey.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/auth2-pubkey.c b/auth2-pubkey.c index 947bfed0..8c5436e3 100644 --- a/auth2-pubkey.c +++ b/auth2-pubkey.c @@ -78,7 +78,7 @@ userauth_pubkey(Authctxt *authctxt) pktype = key_type_from_name(pkalg); if (pktype == KEY_UNSPEC) { /* this is perfectly legal */ - log("userauth_pubkey: unsupported public key algorithm: %s", + logit("userauth_pubkey: unsupported public key algorithm: %s", pkalg); goto done; } @@ -199,7 +199,7 @@ user_key_allowed2(struct passwd *pw, Key *key, char *file) if (options.strict_modes && secure_filename(f, file, pw, line, sizeof(line)) != 0) { fclose(f); - log("Authentication refused: %s", line); + logit("Authentication refused: %s", line); restore_uid(); return 0; } |