diff options
author | Damien Miller <djm@mindrot.org> | 2006-07-24 14:07:35 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2006-07-24 14:07:35 +1000 |
commit | 1cdde6f536ec50d7165ff56843c99655c95a68eb (patch) | |
tree | 5169b1a1b5b4b59700842b32eb4c09a88b757fb5 /session.c | |
parent | e275443f66aab6d46356d6940b8a8b291cab4f9e (diff) |
- stevesk@cvs.openbsd.org 2006/07/20 15:26:15
[auth1.c serverloop.c session.c sshconnect2.c]
missed some needed #include <unistd.h> when KERBEROS5=no; issue from
massimo@cedoc.mo.it
Diffstat (limited to 'session.c')
-rw-r--r-- | session.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: session.c,v 1.210 2006/07/19 13:07:10 dtucker Exp $ */ | 1 | /* $OpenBSD: session.c,v 1.211 2006/07/20 15:26:15 stevesk Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 3 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
4 | * All rights reserved | 4 | * All rights reserved |
@@ -43,6 +43,8 @@ | |||
43 | #include <sys/wait.h> | 43 | #include <sys/wait.h> |
44 | #include <sys/un.h> | 44 | #include <sys/un.h> |
45 | 45 | ||
46 | #include <arpa/inet.h> | ||
47 | |||
46 | #include <errno.h> | 48 | #include <errno.h> |
47 | #include <grp.h> | 49 | #include <grp.h> |
48 | #ifdef HAVE_PATHS_H | 50 | #ifdef HAVE_PATHS_H |
@@ -50,7 +52,7 @@ | |||
50 | #endif | 52 | #endif |
51 | #include <pwd.h> | 53 | #include <pwd.h> |
52 | #include <signal.h> | 54 | #include <signal.h> |
53 | #include <arpa/inet.h> | 55 | #include <unistd.h> |
54 | 56 | ||
55 | #include "ssh.h" | 57 | #include "ssh.h" |
56 | #include "ssh1.h" | 58 | #include "ssh1.h" |