X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fmkstemp.c;h=20486378c4f80353d172edee215a6348a9b198fd;hb=0e1c6ff93f27c939ba9e0df945b16ef98eaaeef1;hp=c1dc7964884525313ea2a2f6da79fa41a78347a5;hpb=b2e2010c7c902235b5efb5bd3c6529f61b093aa4;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) {