]> jfr.im git - irc/quakenet/newserv.git/blobdiff - newsearch/ns-authname.c
Port to git.
[irc/quakenet/newserv.git] / newsearch / ns-authname.c
index 9feab161f61de99c9b4cc193f64f6a4515e7ee29..f1e299b383f48d77bc1f049bbd228cf938e2b49d 100644 (file)
 void *authname_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput);
 void authname_free(searchCtx *ctx, struct searchNode *thenode);
 
-struct searchNode *authname_parse(searchCtx *ctx, int type, int argc, char **argv) {
+struct searchNode *authname_parse(searchCtx *ctx, int argc, char **argv) {
   struct searchNode *thenode;
 
-  if (type != SEARCHTYPE_NICK) {
-    parseError = "authname: 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;