Mercurial > pidgin.yaz
changeset 2696:c17afaccaf09
[gaim-migrate @ 2709]
John Watson fixes more things :)
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Thu, 08 Nov 2001 08:20:43 +0000 |
parents | d4be9f5b8d58 |
children | 7759f914a009 |
files | src/perl.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/perl.c Thu Nov 08 02:39:40 2001 +0000 +++ b/src/perl.c Thu Nov 08 08:20:43 2001 +0000 @@ -761,7 +761,7 @@ char *tmp2, *tmp3; tmp2 = g_strdup(escape_quotes(arg2)); tmp3 = arg3 ? g_strdup(escape_quotes(arg3)) : g_malloc0(1); - buf = g_strdup_printf("'%lu','\"%s\"','%s'", (unsigned long)arg1, tmp2, tmp3); + buf = g_strdup_printf("'%lu','%s','%s'", (unsigned long)arg1, tmp2, tmp3); g_free(tmp2); g_free(tmp3); }