diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-06-19 00:27:56 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-06-19 00:27:56 +0000 |
commit | 6b0fdff1f7b87ede47d85e90a1d570a842cfcdec (patch) | |
tree | 69e83beb3e4c585a4f1543a3558c53037acb563a /usr.bin/ssh/auth-skey.c | |
parent | 1b4f13da9f72873bc2f66c3b4e80c7c1b2813844 (diff) |
KNF done automatically while reading....
Diffstat (limited to 'usr.bin/ssh/auth-skey.c')
-rw-r--r-- | usr.bin/ssh/auth-skey.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/auth-skey.c b/usr.bin/ssh/auth-skey.c index b64550443c7..eb13c5cc520 100644 --- a/usr.bin/ssh/auth-skey.c +++ b/usr.bin/ssh/auth-skey.c @@ -22,7 +22,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "includes.h" -RCSID("$OpenBSD: auth-skey.c,v 1.18 2002/05/13 02:37:39 itojun Exp $"); +RCSID("$OpenBSD: auth-skey.c,v 1.19 2002/06/19 00:27:55 deraadt Exp $"); #ifdef SKEY @@ -50,8 +50,8 @@ skey_query(void *ctx, char **name, char **infotxt, if (skeychallenge(&skey, authctxt->user, challenge) == -1) return -1; - *name = xstrdup(""); - *infotxt = xstrdup(""); + *name = xstrdup(""); + *infotxt = xstrdup(""); *numprompts = 1; *prompts = xmalloc(*numprompts * sizeof(char*)); *echo_on = xmalloc(*numprompts * sizeof(u_int)); |