]> jfr.im git - irc/quakenet/newserv.git/blobdiff - newsearch/ns-authedpct.c
LUA: port luadb to dbapi2 to drop postgres dependency
[irc/quakenet/newserv.git] / newsearch / ns-authedpct.c
index 603b424e1146f0e91614120143de2c20a9f5bb5b..f8b67dcef30240899043ee092abe81dc05fc080f 100644 (file)
@@ -7,17 +7,12 @@
 #include <stdio.h>
 #include <stdlib.h>
 
-void *authedpct_exe(struct searchNode *thenode, void *theinput);
-void authedpct_free(struct searchNode *thenode);
+void *authedpct_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput);
+void authedpct_free(searchCtx *ctx, struct searchNode *thenode);
 
-struct searchNode *authedpct_parse(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.";
@@ -32,15 +27,12 @@ struct searchNode *authedpct_parse(int type, int argc, char **argv) {
   return thenode;
 }
 
-void *authedpct_exe(struct searchNode *thenode, void *theinput) {
+void *authedpct_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput) {
   int i;
   int j=0;
   nick *np;
   chanindex *cip = (chanindex *)theinput;
-  struct authedpct_localdata *localdata;
 
-  localdata = thenode->localdata;
-  
   if (!cip->channel)
     return (void *)0;
   
@@ -52,10 +44,10 @@ void *authedpct_exe(struct searchNode *thenode, void *theinput) {
       j++;
   }
 
-  return (void *)((j * 100) / cip->channel->users->totalusers);
+  return (void *)(long)((j * 100) / cip->channel->users->totalusers);
 }  
 
-void authedpct_free(struct searchNode *thenode) {
+void authedpct_free(searchCtx *ctx, struct searchNode *thenode) {
   free(thenode);
 }