Skip to content

Commit

Permalink
pull up r22443 from trunk
Browse files Browse the repository at this point in the history
 ------------------------------------------------------------------------
 r22443 | tlyu | 2009-07-16 21:35:58 -0400 (Thu, 16 Jul 2009) | 8 lines

 ticket: 6531
 target_version: 1.6.4
 tags: pullup
 subject: 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: 6532
version_fixed: 1.7.1
status: resolved

git-svn-id: svn://anonsvn.mit.edu/krb5/branches/krb5-1-7@22807 dc483132-0cff-0310-8789-dd5450dbe970
  • Loading branch information
tlyu committed Sep 29, 2009
1 parent fb7578c commit 9cef1c1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/appl/gssftp/ftp/cmds.c
Expand Up @@ -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
Expand Down

0 comments on commit 9cef1c1

Please sign in to comment.