diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-01-20 23:14:01 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-01-20 23:14:01 +0000 |
commit | 0d353a1c13d67f468d2050bfe32887d0ba303b7b (patch) | |
tree | 1e9c7e0084937d236545c12db03577bfdbea7cfc /usr.bin/ssh/sftp-common.c | |
parent | 253fef20e556beb97d859f46e51d80af53565ea3 (diff) |
Reduce use of <sys/param.h> and transition to <limits.h> throughout.
ok djm markus
Diffstat (limited to 'usr.bin/ssh/sftp-common.c')
-rw-r--r-- | usr.bin/ssh/sftp-common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sftp-common.c b/usr.bin/ssh/sftp-common.c index d51e632c235..29e1f6c19a2 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.27 2015/01/14 13:54:13 djm Exp $ */ +/* $OpenBSD: sftp-common.c,v 1.28 2015/01/20 23:14:00 deraadt Exp $ */ /* * Copyright (c) 2001 Markus Friedl. All rights reserved. * Copyright (c) 2001 Damien Miller. All rights reserved. @@ -24,9 +24,9 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#include <sys/param.h> /* MAX */ #include <sys/types.h> #include <sys/stat.h> -#include <sys/param.h> #include <grp.h> #include <pwd.h> |