comparison src/prefs.c @ 5014:74dd2e4ed0c1

[gaim-migrate @ 5350] Dont need that Nautilus fix anymore. committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Sat, 05 Apr 2003 02:02:37 +0000
parents e44e68aa6ea3
children 8e55a4d362a3
comparison
equal deleted inserted replaced
5013:e44e68aa6ea3 5014:74dd2e4ed0c1
275 275
276 /* We'll check this just to make sure. This also lets us do something different on 276 /* We'll check this just to make sure. This also lets us do something different on
277 * other platforms, if need be */ 277 * other platforms, if need be */
278 if (!g_ascii_strcasecmp(tail, ".gz") || !g_ascii_strcasecmp(tail, ".tgz")) { 278 if (!g_ascii_strcasecmp(tail, ".gz") || !g_ascii_strcasecmp(tail, ".tgz")) {
279 #ifndef _WIN32 279 #ifndef _WIN32
280 command = g_strdup_printf("tar > /dev/null xzf \"%s\" -C %s", tmp, destdir); 280 command = g_strdup_printf("tar > /dev/null xzf \"%s\" -C %s", path, destdir);
281 #else 281 #else
282 if(!wgaim_gz_untar(path, destdir)) { 282 if(!wgaim_gz_untar(path, destdir)) {
283 g_free(destdir); 283 g_free(destdir);
284 return; 284 return;
285 } 285 }