X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=inline;f=lib%2Fmkstemp.c;h=20486378c4f80353d172edee215a6348a9b198fd;hb=3051cb36d7cbe38db65b209b3ac7520cfbe3e8ba;hp=b0a8df306a3030193d948c16dc837b5b3a32179c;hpb=d60f3b0c6b0f93a601acd1cfd3923f94ca05abb0;p=gnulib.git diff --git a/lib/mkstemp.c b/lib/mkstemp.c index b0a8df306..20486378c 100644 --- a/lib/mkstemp.c +++ b/lib/mkstemp.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998-1999, 2001, 2005-2007, 2009-2011 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) {