| 3446 |
3446 |
| 3447 if (emailinfo) { |
3447 if (emailinfo) { |
| 3448 gchar *to = g_strdup_printf("%s@%s", gc->username, emailinfo->domain); |
3448 gchar *to = g_strdup_printf("%s@%s", gc->username, emailinfo->domain); |
| 3449 if (emailinfo->unread) { |
3449 if (emailinfo->unread) { |
| 3450 if (havenewmail) |
3450 if (havenewmail) |
| 3451 gaim_notify_emails(gc, emailinfo->nummsgs, FALSE, NULL, NULL, &to, &emailinfo->url, NULL, NULL); |
3451 gaim_notify_emails(gc, emailinfo->nummsgs, FALSE, NULL, NULL, (const char **)&to, (const char **)&emailinfo->url, NULL, NULL); |
| 3452 } else |
3452 } else |
| 3453 gaim_notify_emails(gc, 0, FALSE, NULL, NULL, &to, &emailinfo->url, NULL, NULL); |
3453 gaim_notify_emails(gc, 0, FALSE, NULL, NULL, (const char **)&to, (const char **)&emailinfo->url, NULL, NULL); |
| 3454 g_free(to); |
3454 g_free(to); |
| 3455 } |
3455 } |
| 3456 |
3456 |
| 3457 return 1; |
3457 return 1; |
| 3458 } |
3458 } |