aboutsummaryrefslogtreecommitdiffstats
path: root/tempfile.h
AgeCommit message (Collapse)AuthorFilesLines
2013-01-26The const was important, take a copy of the suffix to sanitize instead.Evan Huus1-1/+1
svn path=/trunk/; revision=47300
2013-01-26Replace disallowed filename characters to '-'.Chris Maynard1-3/+3
Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7877 #BACKPORT(1.8, 1.6) svn path=/trunk/; revision=47298
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2009-07-02Pull mkstemp() into tempfile.c. That's the only place we use it now, andGerald Combs1-1/+13
it's arguably the only place we _should_ use it. Add create_tempdir() to tempfile.c and use it to create a temp directory for IP maps. This should fix bug 3530. (This still doesn't work on IE 8 / Vista here. IE gives an access denied error in OpenLayers.js, but this is a separate issue). svn path=/trunk/; revision=28920
2009-07-01Updates to create_tempfile:Gerald Combs1-5/+14
- Use g_get_tmp_dir, just like get_tempfile_path. - Don't make the caller worry about the path buffer length. svn path=/trunk/; revision=28915
2006-05-21name changeRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18197
2006-02-12Move create_tempfile() to tempfile.c out of util.c. This means dumpcapGuy Harris1-0/+43
no longer needs util.c, so it no longer includes routines that use host_ip_af(), so it no longer needs to define its own host_ip_af(). That also means dumpcap.c no longer needs to include <sys/socket.h>. svn path=/trunk/; revision=17278