From 39be8777608f3eed13738a50e03c0969b366414b Mon Sep 17 00:00:00 2001 From: Brian West Date: Thu, 30 Oct 2014 10:40:52 -0500 Subject: [PATCH] One place we said Failed Registration, the other we said Registration Failed, lets try to be consistent. --- src/mod/endpoints/mod_sofia/sofia_reg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod/endpoints/mod_sofia/sofia_reg.c b/src/mod/endpoints/mod_sofia/sofia_reg.c index 4cd81a3d80..46315c86ad 100644 --- a/src/mod/endpoints/mod_sofia/sofia_reg.c +++ b/src/mod/endpoints/mod_sofia/sofia_reg.c @@ -2362,7 +2362,7 @@ void sofia_reg_handle_sip_r_register(int status, default: gateway->state = REG_STATE_FAILED; gateway->failure_status = status; - switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "%s Registration Failed with status %s [%d]. failure #%d\n", + switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "%s Failed Registration with status %s [%d]. failure #%d\n", gateway->name, switch_str_nil(phrase), status, ++gateway->failures); break; }