diff options
author | Tom Yu <tlyu@mit.edu> | 2009-07-17 01:35:58 +0000 |
---|---|---|
committer | Tom Yu <tlyu@mit.edu> | 2009-07-17 01:35:58 +0000 |
commit | aa300905732f9952ed197fcefe1689e38abadc4c (patch) | |
tree | 6627bfc8280abfe23b16cf739b4a4f8c2d73ea49 | |
parent | dc3884fc6623dbf69a5234d0931837f03b0a2dca (diff) | |
download | krb5-aa300905732f9952ed197fcefe1689e38abadc4c.tar.gz krb5-aa300905732f9952ed197fcefe1689e38abadc4c.tar.xz krb5-aa300905732f9952ed197fcefe1689e38abadc4c.zip |
include win-mac.h in gssftp/ftp/cmds.c for HAVE_STDLIB_H
gssftp/ftp/cmds.c had a preprocessor conditional on HAVE_STDLIB_H that
will not evaluate correctly on WIN32 unless win-mac.h is included first.
ticket: 6531
target_version: 1.6.4
tags: pullup
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@22443 dc483132-0cff-0310-8789-dd5450dbe970
-rw-r--r-- | src/appl/gssftp/ftp/cmds.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/appl/gssftp/ftp/cmds.c b/src/appl/gssftp/ftp/cmds.c index 9afefe118..0e06a8d56 100644 --- a/src/appl/gssftp/ftp/cmds.c +++ b/src/appl/gssftp/ftp/cmds.c @@ -38,6 +38,10 @@ static char sccsid[] = "@(#)cmds.c 5.26 (Berkeley) 3/5/91"; /* * FTP User Program -- Command Routines. */ +#ifdef _WIN32 +#include <win-mac.h> +#endif + #ifdef HAVE_STDLIB_H #include <stdlib.h> #endif |