]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Don't conflict with enum
authorAlan T. DeKok <aland@freeradius.org>
Thu, 4 Sep 2014 13:59:45 +0000 (09:59 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Thu, 4 Sep 2014 13:59:45 +0000 (09:59 -0400)
src/main/process.c

index f23771485c65601a566e65d498019ffee9f9f523..1eaef575cac27398ba0a8e0a4ed720a420ff797b 100644 (file)
@@ -1512,7 +1512,7 @@ STATE_MACHINE_DECL(request_running)
                         *      up the post proxy fail
                         *      handler.
                         */
-                       if (request_proxy(request, 0) < 0) goto finished;
+                       if (request_proxy(request, 0) < 0) goto req_finished;
                } else
 #endif
                {
@@ -1530,7 +1530,7 @@ STATE_MACHINE_DECL(request_running)
 #endif
 
 #ifdef WITH_PROXY
-               finished:
+               req_finished:
 #endif
                        request_finish(request, action);
                }