summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Jordan <mjordan@digium.com>2015-04-26 17:21:15 -0500
committerMatt Jordan <mjordan@digium.com>2015-04-26 17:47:47 -0500
commite9788056e9f60a8ef6f810f0c5d31e0f3700e3bb (patch)
treefb9aad7f30a99428a13dd497ef70a6e5d30ecaee
parent2d277996b7a306165931d50cabccea0bc7daa0da (diff)
channels/chan_skinny: Fix compilation error introduced in f8e21a1adf
A typo in commit f8e21a1adf resulted in a compilation error in chan_skinny. This patch fixes the typo. ASTERISK-24917 Change-Id: Id7f4ad1fe948eb2408622e80c27936ce4516c33c
-rw-r--r--channels/chan_skinny.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_skinny.c b/channels/chan_skinny.c
index e875a66ee..ed82c7d1f 100644
--- a/channels/chan_skinny.c
+++ b/channels/chan_skinny.c
@@ -7545,7 +7545,7 @@ static void *skinny_session(void *data)
break;
}
- eventmessage = letohl(req-e);
+ eventmessage = letohl(req->e);
if (eventmessage < 0) {
ast_log(LOG_ERROR, "Event Message is NULL from socket %d, This is bad\n", s->fd);
break;