From: Alexander Barton Date: Sun, 25 Dec 2011 18:43:00 +0000 (+0100) Subject: Update list item, if it already exists X-Git-Tag: rel-19-rc1~93 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=commitdiff_plain;h=15fec92ed75c3de0b32c40d005e93e3f61aef77e Update list item, if it already exists This updates the "validity" (timeout) as well as the "reason" text, if given. --- diff --git a/src/ngircd/lists.c b/src/ngircd/lists.c index 11f8e888..27a51dca 100644 --- a/src/ngircd/lists.c +++ b/src/ngircd/lists.c @@ -126,8 +126,19 @@ Lists_Add(struct list_head *h, const char *Mask, time_t ValidUntil, assert(h != NULL); assert(Mask != NULL); - if (Lists_CheckDupeMask(h, Mask)) + e = Lists_CheckDupeMask(h, Mask); + if (e) { + e->valid_until = ValidUntil; + if (e->reason) + free(e->reason); + e->reason = malloc(strlen(Reason) + 1); + if (e->reason) + strlcpy(e->reason, Reason, strlen(Reason) + 1); + else + Log(LOG_EMERG, + "Can't allocate memory for new list reason text!"); return true; + } e = Lists_GetFirst(h);