diff --git a/native/mod_manager/mod_manager.c b/native/mod_manager/mod_manager.c index 2c5d6671..bf0eaadc 100644 --- a/native/mod_manager/mod_manager.c +++ b/native/mod_manager/mod_manager.c @@ -2618,18 +2618,10 @@ static int is_our_method(const request_rec *r) ours = 1; } else if (strcasecmp(r->method, "DUMP") == 0) { ours = 1; - } else if (strcasecmp(r->method, "ERROR") == 0) { - ours = 1; } else if (strcasecmp(r->method, "INFO") == 0) { ours = 1; } else if (strcasecmp(r->method, "PING") == 0) { ours = 1; - } else if (strcasecmp(r->method, "ADDID") == 0) { - ours = 1; - } else if (strcasecmp(r->method, "REMOVEID") == 0) { - ours = 1; - } else if (strcasecmp(r->method, "QUERY") == 0) { - ours = 1; } else if (strcasecmp(r->method, "VERSION") == 0) { ours = 1; }