mirror of
https://github.com/irssi/irssi.git
synced 2026-08-22 18:12:12 +02:00
any other way to do that? (gpointer) dest->target?
This commit is contained in:
parent
e80b659767
commit
e63e0b653a
1 changed files with 1 additions and 1 deletions
|
|
@ -498,7 +498,7 @@ gboolean strarray_find_dest(char **array, const TEXT_DEST_REC *dest)
|
||||||
targets = g_slist_append(targets, "*");
|
targets = g_slist_append(targets, "*");
|
||||||
if (type & WI_TYPE_CHANNEL) {
|
if (type & WI_TYPE_CHANNEL) {
|
||||||
targets = g_slist_append(targets, "#");
|
targets = g_slist_append(targets, "#");
|
||||||
targets = g_slist_append(targets, dest->target);
|
targets = g_slist_append(targets, g_strdup(dest->target));
|
||||||
}
|
}
|
||||||
else if (type & WI_TYPE_QUERY) {
|
else if (type & WI_TYPE_QUERY) {
|
||||||
if (type & WI_TYPE_DCCCHAT)
|
if (type & WI_TYPE_DCCCHAT)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue