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-options.c | |
parent | 233c4b284aafd55220503b11f052d8e1e17b94dd (diff) |
move #include <pwd.h> out of includes.h; ok markus@
Diffstat (limited to 'usr.bin/ssh/auth-options.c')
-rw-r--r-- | usr.bin/ssh/auth-options.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/ssh/auth-options.c b/usr.bin/ssh/auth-options.c index 56d59841265..473fb8bf7b2 100644 --- a/usr.bin/ssh/auth-options.c +++ b/usr.bin/ssh/auth-options.c @@ -1,4 +1,4 @@ -/* $OpenBSD: auth-options.c,v 1.35 2006/03/25 13:17:01 djm Exp $ */ +/* $OpenBSD: auth-options.c,v 1.36 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 @@ -12,6 +12,10 @@ #include "includes.h" +#include <sys/types.h> + +#include <pwd.h> + #include "xmalloc.h" #include "match.h" #include "log.h" |