summaryrefslogtreecommitdiff
path: root/auth-chall.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-04-05 23:26:32 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-04-05 23:26:32 +0000
commita3700050ec681277bcdf76a02b0c2e304ff317c7 (patch)
tree6cd727ebf611f03b345783cb9d6d8d04e8f483bf /auth-chall.c
parenta6c20148f58e34a902512ffe5eee3279acaaa26b (diff)
- markus@cvs.openbsd.org 2001/04/05 10:42:57
[auth-chall.c authfd.c channels.c clientloop.c kex.c kexgex.c key.c mac.c packet.c serverloop.c sftp-client.c sftp-client.h sftp-glob.c sftp-glob.h sftp-int.c sftp-server.c sftp.c ssh-keygen.c sshconnect.c sshconnect2.c sshd.c] fix whitespace: unexpand + trailing spaces.
Diffstat (limited to 'auth-chall.c')
-rw-r--r--auth-chall.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/auth-chall.c b/auth-chall.c
index ee7b6cd96..f3502f4ee 100644
--- a/auth-chall.c
+++ b/auth-chall.c
@@ -23,7 +23,7 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: auth-chall.c,v 1.6 2001/03/20 18:57:04 markus Exp $"); 26RCSID("$OpenBSD: auth-chall.c,v 1.7 2001/04/05 10:42:47 markus Exp $");
27 27
28#include "auth.h" 28#include "auth.h"
29#include "log.h" 29#include "log.h"
@@ -50,8 +50,8 @@ get_challenge(Authctxt *authctxt, char *devs)
50 debug3("bsd auth: devs %s", devs ? devs : "<default>"); 50 debug3("bsd auth: devs %s", devs ? devs : "<default>");
51 authctxt->as = auth_userchallenge(authctxt->user, devs, "auth-ssh", 51 authctxt->as = auth_userchallenge(authctxt->user, devs, "auth-ssh",
52 &challenge); 52 &challenge);
53 if (authctxt->as == NULL) 53 if (authctxt->as == NULL)
54 return NULL; 54 return NULL;
55 debug2("get_challenge: <%s>", challenge ? challenge : "EMPTY"); 55 debug2("get_challenge: <%s>", challenge ? challenge : "EMPTY");
56 return challenge; 56 return challenge;
57} 57}