From f564affc4a2e82d735a87436ee3342044ffa7265 Mon Sep 17 00:00:00 2001 From: olavmrk Date: Wed, 6 Mar 2013 12:53:26 +0000 Subject: Remove duplicate endpoint handlers. The "metadata" and "repost" handlers were tested twice in the endpoint handler. This patch removes the last occurence, since they are never reached. git-svn-id: https://modmellon.googlecode.com/svn/trunk@174 a716ebb1-153a-0410-b759-cfb97c6a1b53 --- auth_mellon_handler.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/auth_mellon_handler.c b/auth_mellon_handler.c index c0054a0..9e9fbc3 100644 --- a/auth_mellon_handler.c +++ b/auth_mellon_handler.c @@ -3022,10 +3022,6 @@ int am_handler(request_rec *r) return am_handle_artifact_reply(r); } else if(!strcmp(endpoint, "auth")) { return am_handle_auth(r); - } else if(!strcmp(endpoint, "metadata")) { - return OK; - } else if(!strcmp(endpoint, "repost")) { - return OK; } else if(!strcmp(endpoint, "logout") || !strcmp(endpoint, "logoutRequest")) { /* logoutRequest is included for backwards-compatibility -- cgit