diff options
author | Todd T. Fries <todd@cvs.openbsd.org> | 2000-07-07 03:55:05 +0000 |
---|---|---|
committer | Todd T. Fries <todd@cvs.openbsd.org> | 2000-07-07 03:55:05 +0000 |
commit | 88c71fa93f74e17a2e6f8035b84b2514ab284c10 (patch) | |
tree | 9a32ec85a21e1b67ae17b5374272e25cd59b6059 /usr.bin/ssh/auth2.c | |
parent | 4eed9d866fec26a6f59d3162a2eb9e57ddf779a3 (diff) |
clean code is good code
Diffstat (limited to 'usr.bin/ssh/auth2.c')
-rw-r--r-- | usr.bin/ssh/auth2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/auth2.c b/usr.bin/ssh/auth2.c index 93fa96092da..71a3661beae 100644 --- a/usr.bin/ssh/auth2.c +++ b/usr.bin/ssh/auth2.c @@ -27,7 +27,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "includes.h" -RCSID("$OpenBSD: auth2.c,v 1.11 2000/06/19 00:50:11 markus Exp $"); +RCSID("$OpenBSD: auth2.c,v 1.12 2000/07/07 03:55:03 todd Exp $"); #include <openssl/dsa.h> #include <openssl/rsa.h> @@ -438,8 +438,8 @@ user_dsa_key_allowed(struct passwd *pw, Key *key) } } if (fail) { - log(buf); fclose(f); + log("%s",buf); restore_uid(); return 0; } |