]> jfr.im git - irc/quakenet/newserv.git/blobdiff - newsearch/ns-server.c
LUA: port luadb to dbapi2 to drop postgres dependency
[irc/quakenet/newserv.git] / newsearch / ns-server.c
index f6c6b55a2d582a8665502942d7f71a2319242630..eb44078657c3f58139700a1ca2f5308cc984c012 100644 (file)
@@ -24,28 +24,34 @@ struct searchNode *server_parse(searchCtx *ctx, int argc, char **argv) {
   int i;
   long numeric;
 
-  if (ctx->type != SEARCHTYPE_NICK) {
-    parseError = "server: 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;
   }
 
   if (argc>0) {
+    struct searchNode *servername;
+    char *p;
+    
+    if (!(servername=argtoconststr("server", ctx, argv[0], &p))) {
+      free(thenode);
+      return NULL;
+    }
+     
     numeric = -1;
     for(i=0;i<MAXSERVERS;i++) {
       sstring *n = serverlist[i].name;
-      if(n && !strcmp(n->content, argv[0])) {
+      if(n && !strcmp(n->content, p)) {
         numeric = i;
         break;
       }
     }
 
+    (servername->free)(ctx, servername);
+    
     if(numeric == -1) {
       parseError = "server: server not found.";
+      free(thenode);
       return NULL;
     }
 
@@ -80,7 +86,7 @@ void *server_exe_str(searchCtx *ctx, struct searchNode *thenode, void *theinput)
   sstring *n = serverlist[homeserver(np->numeric)].name;
 
   if(!n)
-    return NULL;
+    return "";
 
   return n->content;
 }