diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-02 22:46:00 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-02 22:46:00 +0000 |
commit | d3d067ecfaf14fd0698551a8fc2c905aae180380 (patch) | |
tree | 1f545b9a010bc4250e9e6ccd19850714671e6f61 /usr.bin/ssh/sftp-common.c | |
parent | 20b601c3619018747d3e7308cc902daf70b6d8ef (diff) |
move #include <grp.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/sftp-common.c')
-rw-r--r-- | usr.bin/ssh/sftp-common.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/sftp-common.c b/usr.bin/ssh/sftp-common.c index 2e680e9f3e5..8c794a05f85 100644 --- a/usr.bin/ssh/sftp-common.c +++ b/usr.bin/ssh/sftp-common.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sftp-common.c,v 1.13 2006/03/25 13:17:02 djm Exp $ */ +/* $OpenBSD: sftp-common.c,v 1.14 2006/07/02 22:45:59 stevesk Exp $ */ /* * Copyright (c) 2001 Markus Friedl. All rights reserved. * Copyright (c) 2001 Damien Miller. All rights reserved. @@ -29,6 +29,8 @@ #include <sys/types.h> #include <sys/stat.h> +#include <grp.h> + #include "buffer.h" #include "bufaux.h" #include "log.h" |