while(i < idx->nr) {
if(idx->dlist[i].uri.len == address->len
&& strncasecmp(idx->dlist[i].uri.s, address->s, address->len)
== 0) {
/* destination address found */
old_state = idx->dlist[i].flags;
[...]
return 0; //Removing this return will meet your needs. !!!
}
i++;
}
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.