]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
woops don't log reg twice
authorBrian West <brian@freeswitch.org>
Wed, 24 Nov 2010 16:53:01 +0000 (10:53 -0600)
committerBrian West <brian@freeswitch.org>
Wed, 24 Nov 2010 16:53:01 +0000 (10:53 -0600)
src/mod/endpoints/mod_sofia/sofia_reg.c

index 262aff1dda14e4c0926bb794285da5c1f07a7545..216f808e4f348dbabc997f38f5c130eb1b6ea2df 100644 (file)
@@ -1140,8 +1140,10 @@ uint8_t sofia_reg_handle_register(nua_t *nua, sofia_profile_t *profile, nua_hand
 
                if (auth_res != AUTH_OK && !stale) {
                        if (sofia_test_pflag(profile, PFLAG_LOG_AUTH_FAIL)) {
-                               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "SIP auth %s (REGISTER) on sofia profile '%s' "
-                                                                 "for [%s@%s] from ip %s\n", forbidden ? "failure" : "challenge", profile->name, to_user, to_host, network_ip);
+                               if (regtype == REG_REGISTER) {
+                                       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "SIP auth %s (REGISTER) on sofia profile '%s' "
+                                                                         "for [%s@%s] from ip %s\n", forbidden ? "failure" : "challenge", profile->name, to_user, to_host, network_ip);
+                               }
                        }
 
                        if (profile->debug) {
@@ -1150,13 +1152,10 @@ uint8_t sofia_reg_handle_register(nua_t *nua, sofia_profile_t *profile, nua_hand
                        }
                        if (auth_res == AUTH_FORBIDDEN) {
                                nua_respond(nh, SIP_403_FORBIDDEN, NUTAG_WITH_THIS(nua), TAG_END());
-
+                               
                                /* Log line added to support Fail2Ban */
                                if (sofia_test_pflag(profile, PFLAG_LOG_AUTH_FAIL)) {
-                                       if (regtype == REG_REGISTER) {
-                                               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "SIP auth failure (REGISTER) on sofia profile '%s' "
-                                                                                 "for [%s@%s] from ip %s\n", profile->name, to_user, to_host, network_ip);
-                                       } else if (regtype == REG_INVITE) {
+                                       if (regtype == REG_INVITE) {
                                                switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "SIP auth failure (INVITE) on sofia profile '%s' "
                                                                                  "for [%s@%s] from ip %s\n", profile->name, to_user, to_host, network_ip);
                                        }