X-Git-Url: https://jfr.im/git/irc/quakenet/newserv.git/blobdiff_plain/ad740380e68eca0756c5b869d3e013fb1acc7824..78546f2b0f59b5c8fede1ce5535972716eb17041:/newsearch/ns-timestamp.c diff --git a/newsearch/ns-timestamp.c b/newsearch/ns-timestamp.c index 3344c85d..31894266 100644 --- a/newsearch/ns-timestamp.c +++ b/newsearch/ns-timestamp.c @@ -16,11 +16,6 @@ void timestamp_free(searchCtx *ctx, struct searchNode *thenode); struct searchNode *timestamp_parse(searchCtx *ctx, int argc, char **argv) { struct searchNode *thenode; - if (ctx->type != SEARCHTYPE_NICK) { - parseError = "timestamp: this function is only valid for nick searches."; - return NULL; - } - if (!(thenode=(struct searchNode *)malloc(sizeof (struct searchNode)))) { parseError = "malloc: could not allocate memory for this search."; return NULL; @@ -36,8 +31,16 @@ struct searchNode *timestamp_parse(searchCtx *ctx, int argc, char **argv) { void *timestamp_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput) { nick *np = (nick *)theinput; - - return (void *)np->timestamp; + chanindex *cip = (chanindex *)theinput; + + if (ctx->searchcmd == reg_nicksearch) { + return (void *)np->timestamp; + } else { + if (cip->channel) + return (void *)cip->channel->timestamp; + else + return 0; + } } void timestamp_free(searchCtx *ctx, struct searchNode *thenode) {