Diff for /embedaddon/sudo/compat/mktemp.c between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2012/02/21 16:23:02 version 1.1.1.2, 2013/07/22 10:46:11
Line 1 Line 1
 /*  /*
 * Copyright (c) 2001, 2003, 2004, 2008-2011 * Copyright (c) 2001, 2003, 2004, 2008-2011, 2013
  *      Todd C. Miller <Todd.Miller@courtesan.com>   *      Todd C. Miller <Todd.Miller@courtesan.com>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
Line 17 Line 17
   
 #include <config.h>  #include <config.h>
   
   #if !defined(HAVE_MKSTEMPS) || !defined(HAVE_MKDTEMP)
   
 #include <sys/types.h>  #include <sys/types.h>
 #include <sys/time.h>  #include <sys/time.h>
 #include <sys/stat.h>  #include <sys/stat.h>
Line 157  mkdtemp(char *path) Line 159  mkdtemp(char *path)
         return path;          return path;
 }  }
 #endif /* HAVE_MKDTEMP */  #endif /* HAVE_MKDTEMP */
   #endif /* !HAVE_MKSTEMPS || !HAVE_MKDTEMP */

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>