comparison src/log.c @ 13583:69264c313521

[gaim-migrate @ 15965] Argument order matters. Fix that last commit. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Tue, 04 Apr 2006 23:53:25 +0000
parents a33208cc6247
children 51d436a267ac
comparison
equal deleted inserted replaced
13582:f98c559a1682 13583:69264c313521
720 tm.tm_zone = tmp; 720 tm.tm_zone = tmp;
721 log = gaim_log_new(type, name, account, NULL, stamp, &tm); 721 log = gaim_log_new(type, name, account, NULL, stamp, &tm);
722 g_free(tmp); 722 g_free(tmp);
723 } 723 }
724 #else 724 #else
725 time_t stamp = gaim_str_to_time(filename, FALSE, NULL, &tm, NULL); 725 time_t stamp = gaim_str_to_time(filename, FALSE, &tm, NULL, NULL);
726 726
727 log = gaim_log_new(type, name, account, NULL, stamp, &tm); 727 log = gaim_log_new(type, name, account, NULL, stamp, &tm);
728 #endif 728 #endif
729 729
730 log->logger = logger; 730 log->logger = logger;