]> jfr.im git - irc/quakenet/newserv.git/blame - newsearch/ns-reason.c
newsearch: Fix return type for reason operator.
[irc/quakenet/newserv.git] / newsearch / ns-reason.c
CommitLineData
8c50d8eb 1/*
8b6b2765 2 * reason functionality
8c50d8eb
GB
3 */
4
5#include "newsearch.h"
6
7#include <stdio.h>
8#include <stdlib.h>
9
10void *reason_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput);
11void reason_free(searchCtx *ctx, struct searchNode *thenode);
12
13struct searchNode *reason_parse(searchCtx *ctx, int argc, char **argv) {
14 struct searchNode *thenode;
15
16 if (!(thenode=(struct searchNode *)malloc(sizeof (struct searchNode)))) {
17 parseError = "malloc: could not allocate memory for this search.";
18 return NULL;
19 }
20
3d099bd1 21 thenode->returntype = RETURNTYPE_STRING;
8c50d8eb
GB
22 thenode->localdata = NULL;
23 thenode->exe = reason_exe;
24 thenode->free = reason_free;
25
26 return thenode;
27}
28
29void *reason_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput) {
30 nick *np = (nick *)theinput;
31 whowas *ww = (whowas *)np->next;
32
7c9ae962 33 if (!ww->reason)
8c50d8eb 34 return (void *)0;
7c9ae962 35
8c50d8eb
GB
36 return (void *)ww->reason->content;
37}
38
39void reason_free(searchCtx *ctx, struct searchNode *thenode) {
40 free(thenode);
41}
42