Use wireshark (instead of ether) for temp file name prefix.

svn path=/trunk/; revision=27993
This commit is contained in:
Bill Meier 2009-04-08 12:43:51 +00:00
parent 013db77404
commit 63d7a7d712
1 changed files with 1 additions and 1 deletions

2
file.c
View File

@ -1204,7 +1204,7 @@ cf_merge_files(char **out_filenamep, int in_file_count,
if (out_fd == -1)
open_err = errno;
} else {
out_fd = create_tempfile(tmpname, sizeof tmpname, "ether");
out_fd = create_tempfile(tmpname, sizeof tmpname, "wireshark");
if (out_fd == -1)
open_err = errno;
out_filename = g_strdup(tmpname);