]> jfr.im git - irc/quakenet/newserv.git/blobdiff - newsearch/ns-name.c
TRUSTS: require sqlite
[irc/quakenet/newserv.git] / newsearch / ns-name.c
index bc2052d7bbe1e50624e5d612700983fda53da78f..2b5abc49af0aafcc363565828ef2b39ae6b0c00f 100644 (file)
 void *name_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput);
 void name_free(searchCtx *ctx, struct searchNode *thenode);
 
-struct searchNode *name_parse(searchCtx *ctx, int type, int argc, char **argv) {
+struct searchNode *name_parse(searchCtx *ctx, int argc, char **argv) {
   struct searchNode *thenode;
 
-  if (type != SEARCHTYPE_CHANNEL) {
-    parseError = "name: this function is only valid for channel searches.";
-    return NULL;
-  }
-
   if (!(thenode=(struct searchNode *)malloc(sizeof(struct searchNode)))) {
     /* couldn't malloc() memory for thenode, so free localdata to avoid leakage */
     parseError = "malloc: could not allocate memory for this search.";