]> code.citadel.org Git - citadel.git/blobdiff - webcit/marchlist.c
SMTP-Relay: add other ways of filtering
[citadel.git] / webcit / marchlist.c
index bcfbb4872924e06ac2e52aa852d4cb9fedd6645d..990c24fced27a9b72311bf77c9911e6f75a8beda 100644 (file)
@@ -57,8 +57,6 @@ void remove_march(const StrBuf *aaa)
 char *pop_march(int desired_floor)
 {
        static char TheRoom[128];
-       int TheFloor = 0;
-       int TheOrder = 32767;
        int TheWeight = 0;
        int weight;
        struct march *mptr = NULL;
@@ -80,8 +78,10 @@ char *pop_march(int desired_floor)
                if (weight > TheWeight) {
                        TheWeight = weight;
                        strcpy(TheRoom, mptr->march_name);
+/* TODOO: and now????
                        TheFloor = mptr->march_floor;
                        TheOrder = mptr->march_order;
+*/
                }
        }
        return (TheRoom);
@@ -230,9 +230,6 @@ void _gotonext(void) {
 }
 
 
-void dotskip(void) {
-       smart_goto(sbstr("room"));
-}
 
 
 int ConditionalHaveUngoto(StrBuf *Target, WCTemplputParams *TP)