diff options
author | Darren Tucker <dtucker@zip.com.au> | 2004-05-13 16:39:33 +1000 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2004-05-13 16:39:33 +1000 |
commit | 1f8311c836a20ce4923e2142d206f8d8073d0ca4 (patch) | |
tree | 93c92ccf9709d18faa075fb2b3c5fda4d969b28a /auth.c | |
parent | b42714e28bcb22c5b52b0266813165cf5e7e9ccb (diff) |
- deraadt@cvs.openbsd.org 2004/05/11 19:01:43
[auth.c auth2-none.c authfile.c channels.c monitor.c monitor_mm.c
packet.c packet.h progressmeter.c session.c openbsd-compat/xmmap.c]
improve some code lint did not like; djm millert ok
Diffstat (limited to 'auth.c')
-rw-r--r-- | auth.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -23,7 +23,7 @@ | |||
23 | */ | 23 | */ |
24 | 24 | ||
25 | #include "includes.h" | 25 | #include "includes.h" |
26 | RCSID("$OpenBSD: auth.c,v 1.52 2004/05/08 00:01:37 deraadt Exp $"); | 26 | RCSID("$OpenBSD: auth.c,v 1.53 2004/05/11 19:01:43 deraadt Exp $"); |
27 | 27 | ||
28 | #ifdef HAVE_LOGIN_H | 28 | #ifdef HAVE_LOGIN_H |
29 | #include <login.h> | 29 | #include <login.h> |
@@ -562,8 +562,8 @@ fakepw(void) | |||
562 | fake.pw_passwd = | 562 | fake.pw_passwd = |
563 | "$2a$06$r3.juUaHZDlIbQaO2dS9FuYxL1W9M81R1Tc92PoSNmzvpEqLkLGrK"; | 563 | "$2a$06$r3.juUaHZDlIbQaO2dS9FuYxL1W9M81R1Tc92PoSNmzvpEqLkLGrK"; |
564 | fake.pw_gecos = "NOUSER"; | 564 | fake.pw_gecos = "NOUSER"; |
565 | fake.pw_uid = -1; | 565 | fake.pw_uid = (uid_t)-1; |
566 | fake.pw_gid = -1; | 566 | fake.pw_gid = (gid_t)-1; |
567 | #ifdef HAVE_PW_CLASS_IN_PASSWD | 567 | #ifdef HAVE_PW_CLASS_IN_PASSWD |
568 | fake.pw_class = ""; | 568 | fake.pw_class = ""; |
569 | #endif | 569 | #endif |