diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-06 16:03:54 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-06 16:03:54 +0000 |
commit | 3e5dda7b859c760637a02baab3070275c99c874c (patch) | |
tree | a28ad01bcb3bcb2aa13a26994539ab9f9f57c852 /usr.bin/ssh/auth-passwd.c | |
parent | 233c4b284aafd55220503b11f052d8e1e17b94dd (diff) |
move #include <pwd.h> out of includes.h; ok markus@
Diffstat (limited to 'usr.bin/ssh/auth-passwd.c')
-rw-r--r-- | usr.bin/ssh/auth-passwd.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/ssh/auth-passwd.c b/usr.bin/ssh/auth-passwd.c index beac5e9ca97..ec128dc2e96 100644 --- a/usr.bin/ssh/auth-passwd.c +++ b/usr.bin/ssh/auth-passwd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: auth-passwd.c,v 1.36 2006/03/25 13:17:01 djm Exp $ */ +/* $OpenBSD: auth-passwd.c,v 1.37 2006/07/06 16:03:53 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -38,6 +38,10 @@ #include "includes.h" +#include <sys/types.h> + +#include <pwd.h> + #include "packet.h" #include "buffer.h" #include "log.h" |