summaryrefslogtreecommitdiff
path: root/sshpty.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-07-10 20:20:33 +1000
committerDamien Miller <djm@mindrot.org>2006-07-10 20:20:33 +1000
commit427a1d57bb6110dcf2b8fcdcabe566b8290a942a (patch)
treeeb7f8a5ef9c62bb24347a51b424b8144850b97ca /sshpty.c
parent5d3ac7f7eeb8a5d060e5dcdd6f33af1cec909d96 (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 'sshpty.c')
-rw-r--r--sshpty.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sshpty.c b/sshpty.c
index 0e49e9a16..92f86e7a1 100644
--- a/sshpty.c
+++ b/sshpty.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshpty.c,v 1.19 2006/03/25 13:17:03 djm Exp $ */ 1/* $OpenBSD: sshpty.c,v 1.20 2006/07/02 22:45:59 stevesk Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -19,6 +19,7 @@
19#include <sys/stat.h> 19#include <sys/stat.h>
20#include <signal.h> 20#include <signal.h>
21 21
22#include <grp.h>
22#ifdef HAVE_PATHS_H 23#ifdef HAVE_PATHS_H
23# include <paths.h> 24# include <paths.h>
24#endif 25#endif