From 92896c6c367a6415545e58340c49bafa87c2372a Mon Sep 17 00:00:00 2001 From: Raymond Chandler Date: Mon, 9 Nov 2009 22:26:28 +0000 Subject: [PATCH] fix typo git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15403 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- 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 6ecd6f551a..aed5890ee6 100644 --- a/src/mod/endpoints/mod_sofia/sofia_reg.c +++ b/src/mod/endpoints/mod_sofia/sofia_reg.c @@ -1098,7 +1098,7 @@ uint8_t sofia_reg_handle_register(nua_t *nua, sofia_profile_t *profile, nua_hand switch_event_add_header_string(s_event, SWITCH_STACK_BOTTOM, "contact", contact_str); switch_event_add_header_string(s_event, SWITCH_STACK_BOTTOM, "call-id", call_id); switch_event_add_header_string(s_event, SWITCH_STACK_BOTTOM, "rpid", rpid); - switch_event_add_header_string(s_event, SWITCH_STACK_BOTTOM, "statusd", reg_desc); + switch_event_add_header_string(s_event, SWITCH_STACK_BOTTOM, "status", reg_desc); switch_event_add_header(s_event, SWITCH_STACK_BOTTOM, "expires", "%ld", (long) exptime); switch_event_add_header_string(s_event, SWITCH_STACK_BOTTOM, "to-user", from_user); switch_event_add_header_string(s_event, SWITCH_STACK_BOTTOM, "to-host", from_host);