| 90 copy->host = g_strdup(info->host); |
90 copy->host = g_strdup(info->host); |
| 91 copy->port = info->port; |
91 copy->port = info->port; |
| 92 copy->username = g_strdup(info->username); |
92 copy->username = g_strdup(info->username); |
| 93 copy->password = g_strdup(info->password); |
93 copy->password = g_strdup(info->password); |
| 94 |
94 |
| 95 return info; |
95 return copy; |
| 96 } |
96 } |
| 97 |
97 |
| 98 void |
98 void |
| 99 purple_proxy_info_destroy(PurpleProxyInfo *info) |
99 purple_proxy_info_destroy(PurpleProxyInfo *info) |
| 100 { |
100 { |