From: Raymond Chandler Date: Mon, 9 Nov 2009 22:26:28 +0000 (+0000) Subject: fix typo X-Git-Tag: v1.0.6~1465 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=92896c6c367a6415545e58340c49bafa87c2372a;p=thirdparty%2Ffreeswitch.git fix typo git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15403 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- 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);