changed dot to underscore in implementation of gimp_temp_name(). Fixes bug

2002-02-25  Sven Neumann  <sven@gimp.org>

        * tools/pdbgen/pdb/fileops.pdb: changed dot to underscore in
        implementation of gimp_temp_name(). Fixes bug #72324.

        * app/pdb/fileops_cmds.c: regenerated.
This commit is contained in:
Sven Neumann 2002-02-25 21:52:10 +00:00 committed by Sven Neumann
parent b95b488477
commit f68a6a8d55
2 changed files with 2 additions and 2 deletions

View File

@ -399,7 +399,7 @@ temp_name_invoker (Gimp *gimp,
if (id == 0)
pid = getpid ();
filename = g_strdup_printf ("gimp_temp.%d%d.%s",
filename = g_strdup_printf ("gimp_temp_%d%d.%s",
pid, id++, extension);
name = g_build_filename (base_config->temp_path, filename, NULL);

View File

@ -280,7 +280,7 @@ HELP
if (id == 0)
pid = getpid ();
filename = g_strdup_printf ("gimp_temp.%d%d.%s",
filename = g_strdup_printf ("gimp_temp_%d%d.%s",
pid, id++, extension);
name = g_build_filename (base_config->temp_path, filename, NULL);