diff options
author | 2014-05-28 12:59:03 +0000 | |
---|---|---|
committer | 2014-05-28 12:59:03 +0000 | |
commit | 6b95867d19fce08a77c8ea808a98a786983b0324 (patch) | |
tree | bc1a17178fbc5820efeca30a233f0abce5c2a3ec | |
parent | When invoked as more, make the -i option behave the same as less's (diff) | |
download | wireguard-openbsd-6b95867d19fce08a77c8ea808a98a786983b0324.tar.xz wireguard-openbsd-6b95867d19fce08a77c8ea808a98a786983b0324.zip |
missing space in error message
-rw-r--r-- | libexec/login_yubikey/login_yubikey.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/login_yubikey/login_yubikey.c b/libexec/login_yubikey/login_yubikey.c index bb9bb014258..57170d4c79f 100644 --- a/libexec/login_yubikey/login_yubikey.c +++ b/libexec/login_yubikey/login_yubikey.c @@ -1,4 +1,4 @@ -/* $OpenBSD: login_yubikey.c,v 1.8 2013/11/27 21:25:25 deraadt Exp $ */ +/* $OpenBSD: login_yubikey.c,v 1.9 2014/05/28 12:59:03 otto Exp $ */ /* * Copyright (c) 2010 Daniel Hartmeier <daniel@benzedrine.cx> @@ -257,7 +257,7 @@ yubikey_login(const char *username, const char *password) } break; /* uid matches */ case -1: - syslog(LOG_INFO, "user %s: could not decode password" + syslog(LOG_INFO, "user %s: could not decode password " "with any keymap (%d crc ok)", username, crcok); return (AUTH_FAILED); |