From: Stefan Knoblich Date: Sat, 17 Sep 2011 23:14:56 +0000 (+0200) Subject: mod_dingaling: Remove unused but set variables (GCC-4.6 -Wunused-but-set-variable) X-Git-Tag: v1.2-rc1~51^2~61 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0f45b8baddc3c8162013e4c1ca31ea8d57d9bf02;p=thirdparty%2Ffreeswitch.git mod_dingaling: Remove unused but set variables (GCC-4.6 -Wunused-but-set-variable) Subject and type event headers were never used in chat_send(), remove them. Signed-off-by: Stefan Knoblich --- diff --git a/src/mod/endpoints/mod_dingaling/mod_dingaling.c b/src/mod/endpoints/mod_dingaling/mod_dingaling.c index a7e8537180..527a2a0fa2 100644 --- a/src/mod/endpoints/mod_dingaling/mod_dingaling.c +++ b/src/mod/endpoints/mod_dingaling/mod_dingaling.c @@ -496,17 +496,13 @@ static switch_status_t chat_send(switch_event_t *message_event) const char *proto; const char *from; const char *to; - const char *subject; const char *body; - const char *type; const char *hint; proto = switch_event_get_header(message_event, "proto"); from = switch_event_get_header(message_event, "from"); to = switch_event_get_header(message_event, "to"); - subject = switch_event_get_header(message_event, "subject"); body = switch_event_get_body(message_event); - type = switch_event_get_header(message_event, "type"); hint = switch_event_get_header(message_event, "hint"); switch_assert(proto != NULL);