]> jfr.im git - irc/quakenet/newserv.git/blobdiff - newsearch/ns-channel.c
Dynamic help for newsearch, and permissions on terms/output functions
[irc/quakenet/newserv.git] / newsearch / ns-channel.c
index 934698de8b4e0e9e1086df7e932885d76da28676..884ff6a32e0c7d964d6ca4f06d0523b24533b2c8 100644 (file)
 void *channel_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput);
 void channel_free(searchCtx *ctx, struct searchNode *thenode);
 
-struct searchNode *channel_parse(searchCtx *ctx, int type, int argc, char **argv) {
+struct searchNode *channel_parse(searchCtx *ctx, int argc, char **argv) {
   struct searchNode *thenode;
   channel *cp;
 
-  if (type != SEARCHTYPE_NICK) {
-    parseError = "channel: this function is only valid for nick searches.";
-    return NULL;
-  }
-
   if (argc<1) {
     parseError = "channel: usage: channel <channel name>";
     return NULL;