From: Melvin Hadasht Date: Sun, 12 May 2002 15:38:10 +0000 (+0000) Subject: src/prefs_actions.c: X-Git-Tag: rel_0_7_6~18 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=f0cd24e26ebe62e915efec5358d230ae25fb7b36 src/prefs_actions.c: Removed implicitely added quotes around the name of the temporary files of mime parts. --- diff --git a/ChangeLog.claws b/ChangeLog.claws index def4f3cac..63357480e 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,9 @@ +2002-05-12 [melvin] 0.7.5claws20 + + * src/prefs_actions.c + Removed implicitely added quotes around the name + of the temporary files of mime parts. + 2002-05-12 [paul] 0.7.5claws19 * sync with 0.7.5cvs20 diff --git a/configure.in b/configure.in index 484db1834..963e6018e 100644 --- a/configure.in +++ b/configure.in @@ -8,7 +8,7 @@ MINOR_VERSION=7 MICRO_VERSION=5 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=claws19 +EXTRA_VERSION=claws20 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl set $target diff --git a/src/prefs_actions.c b/src/prefs_actions.c index 5d9e590a3..2b27771fb 100644 --- a/src/prefs_actions.c +++ b/src/prefs_actions.c @@ -704,9 +704,8 @@ static GString *parse_append_msgpart(GString *cmd, MsgInfo *msginfo, g_free(partname); return NULL; } - cmd = g_string_append_c(cmd, '"'); + cmd = g_string_append(cmd,partname); - cmd = g_string_append_c(cmd, '"'); g_free(partname);