X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fmkostemps.c;h=fb83014bdb3107f78044d1c9eff616949eb9f376;hb=fc4b90fafd4bcfd25b7eed04bc5c8f9d30011805;hp=8de90fe2b2a76ed7994660b06226214cca5be8b5;hpb=964a52336aad0cf4a4d6c08c128560c87742c921;p=gnulib.git diff --git a/lib/mkostemps.c b/lib/mkostemps.c index 8de90fe2b..fb83014bd 100644 --- a/lib/mkostemps.c +++ b/lib/mkostemps.c @@ -1,5 +1,5 @@ -/* Copyright (C) 1998, 1999, 2001, 2005, 2006, 2007, 2009 Free - Software Foundation, Inc. +/* Copyright (C) 1998, 1999, 2001, 2005, 2006, 2007, 2009, 2010 Free Software + Foundation, Inc. This file is derived from the one in the GNU C Library. This program is free software: you can redistribute it and/or modify @@ -37,15 +37,12 @@ # define __GT_FILE 0 #endif -/* Generate a unique temporary file name from TEMPLATE. The last six - characters before a suffix of length SUFFIXLEN of TEMPLATE must be +/* Generate a unique temporary file name from XTEMPLATE. The last six + characters before a suffix of length SUFFIXLEN of XTEMPLATE must be "XXXXXX"; they are replaced with a string that makes the filename unique. Then open the file and return a fd. */ int -mkostemps (template, suffixlen, flags) - char *template; - int suffixlen; - int flags; +mkostemps (char *xtemplate, int suffixlen, int flags) { if (suffixlen < 0) { @@ -53,5 +50,5 @@ mkostemps (template, suffixlen, flags) return -1; } - return __gen_tempname (template, suffixlen, flags, __GT_FILE); + return __gen_tempname (xtemplate, suffixlen, flags, __GT_FILE); }