diff options
author | Damien Miller <djm@mindrot.org> | 2006-07-10 20:20:33 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2006-07-10 20:20:33 +1000 |
commit | 427a1d57bb6110dcf2b8fcdcabe566b8290a942a (patch) | |
tree | eb7f8a5ef9c62bb24347a51b424b8144850b97ca /sftp-common.c | |
parent | 5d3ac7f7eeb8a5d060e5dcdd6f33af1cec909d96 (diff) |
- stevesk@cvs.openbsd.org 2006/07/02 22:45:59
[groupaccess.c groupaccess.h includes.h session.c sftp-common.c sshpty.c]
move #include <grp.h> out of includes.h
(portable needed uidswap.c too)
Diffstat (limited to 'sftp-common.c')
-rw-r--r-- | sftp-common.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sftp-common.c b/sftp-common.c index 2e680e9f3..8c794a05f 100644 --- a/sftp-common.c +++ b/sftp-common.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sftp-common.c,v 1.13 2006/03/25 13:17:02 djm Exp $ */ | 1 | /* $OpenBSD: sftp-common.c,v 1.14 2006/07/02 22:45:59 stevesk Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2001 Markus Friedl. All rights reserved. | 3 | * Copyright (c) 2001 Markus Friedl. All rights reserved. |
4 | * Copyright (c) 2001 Damien Miller. All rights reserved. | 4 | * Copyright (c) 2001 Damien Miller. All rights reserved. |
@@ -29,6 +29,8 @@ | |||
29 | #include <sys/types.h> | 29 | #include <sys/types.h> |
30 | #include <sys/stat.h> | 30 | #include <sys/stat.h> |
31 | 31 | ||
32 | #include <grp.h> | ||
33 | |||
32 | #include "buffer.h" | 34 | #include "buffer.h" |
33 | #include "bufaux.h" | 35 | #include "bufaux.h" |
34 | #include "log.h" | 36 | #include "log.h" |