diff options
author | Jakob Schlyter <jakob@cvs.openbsd.org> | 2003-11-08 16:02:41 +0000 |
---|---|---|
committer | Jakob Schlyter <jakob@cvs.openbsd.org> | 2003-11-08 16:02:41 +0000 |
commit | 7149df53582597e8b4c1430f6cadecdb60a73e6b (patch) | |
tree | 8b0ae56ac770518f34d17a427fee8f7e705c6d76 /usr.bin | |
parent | a5c81b19c9464d694a02602f040288900b700b22 (diff) |
remove unused variable (pw). ok djm@
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/auth1.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/ssh/auth1.c b/usr.bin/ssh/auth1.c index 9862d3b88d6..0d84e6c9abc 100644 --- a/usr.bin/ssh/auth1.c +++ b/usr.bin/ssh/auth1.c @@ -10,7 +10,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: auth1.c,v 1.54 2003/11/04 08:54:09 djm Exp $"); +RCSID("$OpenBSD: auth1.c,v 1.55 2003/11/08 16:02:40 jakob Exp $"); #include "xmalloc.h" #include "rsa.h" @@ -70,7 +70,6 @@ do_authloop(Authctxt *authctxt) u_int dlen; u_int ulen; int type = 0; - struct passwd *pw = authctxt->pw; debug("Attempting authentication for %s%.100s.", authctxt->valid ? "" : "illegal user ", authctxt->user); |