| 95 void serv_finish_login(struct gaim_connection *gc) |
95 void serv_finish_login(struct gaim_connection *gc) |
| 96 { |
96 { |
| 97 char *buf; |
97 char *buf; |
| 98 |
98 |
| 99 if (strlen(gc->user->user_info)) { |
99 if (strlen(gc->user->user_info)) { |
| 100 buf = g_malloc(strlen(gc->user->user_info) * 4); |
100 //g_malloc(strlen(gc->user->user_info) * 4); |
| 101 strncpy_withhtml(buf, gc->user->user_info, strlen(gc->user->user_info) * 4); |
101 //strncpy_withhtml(buf, gc->user->user_info, strlen(gc->user->user_info) * 4); |
| 102 serv_set_info(gc, buf); |
102 serv_set_info(gc, gc->user->user_info); |
| 103 g_free(buf); |
103 //g_free(buf); |
| 104 } |
104 } |
| 105 |
105 |
| 106 if (gc->idle_timer > 0) |
106 if (gc->idle_timer > 0) |
| 107 gtk_timeout_remove(gc->idle_timer); |
107 gtk_timeout_remove(gc->idle_timer); |
| 108 |
108 |