]> jfr.im git - irc/quakenet/newserv.git/blobdiff - newsearch/ns-authedpct.c
newsearch changes to support addition of trust_search/patriciasearch
[irc/quakenet/newserv.git] / newsearch / ns-authedpct.c
index 42ddee2f2c4334a365214861e0804f4d76f65c61..8558e9ad2832c57cdd20d949bbe3f39c5dd09bf0 100644 (file)
 void *authedpct_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput);
 void authedpct_free(searchCtx *ctx, struct searchNode *thenode);
 
-struct searchNode *authedpct_parse(searchCtx *ctx, int type, int argc, char **argv) {
+struct searchNode *authedpct_parse(searchCtx *ctx, int argc, char **argv) {
   struct searchNode *thenode;
 
-  if (type != SEARCHTYPE_CHANNEL) {
-    parseError = "authedpct: 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.";