X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fmkstemp.c;h=20486378c4f80353d172edee215a6348a9b198fd;hb=a425462f784164b73297d8992075fd9aebd65a94;hp=c1dc7964884525313ea2a2f6da79fa41a78347a5;hpb=8d8eda4eab3d2801251daf4eb31756c3595e2fc6;p=gnulib.git diff --git a/lib/mkstemp.c b/lib/mkstemp.c index c1dc79648..20486378c 100644 --- a/lib/mkstemp.c +++ b/lib/mkstemp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-1999, 2001, 2005-2007, 2009-2010 Free Software +/* Copyright (C) 1998-1999, 2001, 2005-2007, 2009-2012 Free Software Foundation, Inc. This file is derived from the one in the GNU C Library. @@ -38,7 +38,11 @@ /* Generate a unique temporary file name from XTEMPLATE. The last six characters of XTEMPLATE must be "XXXXXX"; they are replaced with a string that makes the file name unique. - Then open the file and return a fd. */ + Then open the file and return a fd. + + If you are creating temporary files which will later be removed, + consider using the clean-temp module, which avoids several pitfalls + of using mkstemp directly. */ int mkstemp (char *xtemplate) {