| 149 g_string_append_printf(s, _("<br><b>Channel Topic:</b><br>%s"), tmp2); |
149 g_string_append_printf(s, _("<br><b>Channel Topic:</b><br>%s"), tmp2); |
| 150 g_free(tmp2); |
150 g_free(tmp2); |
| 151 } |
151 } |
| 152 |
152 |
| 153 if (channel->mode) { |
153 if (channel->mode) { |
| 154 g_string_append_printf(s, _("<br><b>Channel Modes:</b> ")); |
154 g_string_append(s, _("<br><b>Channel Modes:</b> ")); |
| 155 silcpurple_get_chmode_string(channel->mode, tmp, sizeof(tmp)); |
155 silcpurple_get_chmode_string(channel->mode, tmp, sizeof(tmp)); |
| 156 g_string_append(s, tmp); |
156 g_string_append(s, tmp); |
| 157 } |
157 } |
| 158 |
158 |
| 159 if (channel->founder_key) { |
159 if (channel->founder_key) { |
| 1223 SilcClientConnection conn = sg->conn; |
1223 SilcClientConnection conn = sg->conn; |
| 1224 SilcHashTableList htl; |
1224 SilcHashTableList htl; |
| 1225 SilcChannelUser chu; |
1225 SilcChannelUser chu; |
| 1226 SilcChannelEntry channel = NULL; |
1226 SilcChannelEntry channel = NULL; |
| 1227 SilcChannelPrivateKey key = NULL; |
1227 SilcChannelPrivateKey key = NULL; |
| 1228 SilcUInt32 flags; |
1228 SilcMessageFlags flags; |
| 1229 int ret = 0; |
1229 int ret = 0; |
| 1230 char *msg2, *tmp; |
1230 char *msg2, *tmp; |
| 1231 gboolean found = FALSE; |
1231 gboolean found = FALSE; |
| 1232 gboolean sign = purple_account_get_bool(sg->account, "sign-verify", FALSE); |
1232 gboolean sign = purple_account_get_bool(sg->account, "sign-verify", FALSE); |
| 1233 SilcDList list; |
1233 SilcDList list; |