Mailing List Archive

svn commit: r437277 - /spamassassin/trunk/lib/Mail/SpamAssassin/Util.pm
Author: felicity
Date: Sat Aug 26 19:15:39 2006
New Revision: 437277

URL: http://svn.apache.org/viewvc?rev=437277&view=rev
Log:
fix documentation for secure_tmpfile() to have the returned variables in the right order

Modified:
spamassassin/trunk/lib/Mail/SpamAssassin/Util.pm

Modified: spamassassin/trunk/lib/Mail/SpamAssassin/Util.pm
URL: http://svn.apache.org/viewvc/spamassassin/trunk/lib/Mail/SpamAssassin/Util.pm?rev=437277&r1=437276&r2=437277&view=diff
==============================================================================
--- spamassassin/trunk/lib/Mail/SpamAssassin/Util.pm (original)
+++ spamassassin/trunk/lib/Mail/SpamAssassin/Util.pm Sat Aug 26 19:15:39 2006
@@ -877,7 +877,7 @@

###########################################################################

-=item my ($filehandle, $filepath) = secure_tmpfile();
+=item my ($filepath, $filehandle) = secure_tmpfile();

Generates a filename for a temporary file, opens it exclusively and
securely, and returns a filehandle to the open file (opened O_RDWR).