From 9bdfb187150c7b4bde31f0291e6ff881a16e08a7 Mon Sep 17 00:00:00 2001
From: Nathan Neulinger <nneul@neulinger.org>
Date: Fri, 12 Jul 2013 11:05:18 -0500
Subject: [PATCH] skinny correct field name

---
 src/mod/endpoints/mod_skinny/skinny_protocol.c | 4 ++--
 src/mod/endpoints/mod_skinny/skinny_protocol.h | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/mod/endpoints/mod_skinny/skinny_protocol.c b/src/mod/endpoints/mod_skinny/skinny_protocol.c
index eb472167ee..fa27bd1de3 100644
--- a/src/mod/endpoints/mod_skinny/skinny_protocol.c
+++ b/src/mod/endpoints/mod_skinny/skinny_protocol.c
@@ -155,8 +155,8 @@ switch_status_t skinny_read_packet(listener_t *listener, skinny_message_t **req)
 				memcpy(request, mbuf, bytes);
 #ifdef SKINNY_MEGA_DEBUG
 				switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG,
-						"Got request: length=%d,reserved=%x,type=%x\n",
-						request->length,request->reserved,request->type);
+						"Got request: length=%d,version=%x,type=%x\n",
+						request->length,request->version,request->type);
 #endif
 				if(request->length < SKINNY_MESSAGE_FIELD_SIZE) {
 					switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR,
diff --git a/src/mod/endpoints/mod_skinny/skinny_protocol.h b/src/mod/endpoints/mod_skinny/skinny_protocol.h
index dcea93f891..d3b84ffabc 100644
--- a/src/mod/endpoints/mod_skinny/skinny_protocol.h
+++ b/src/mod/endpoints/mod_skinny/skinny_protocol.h
@@ -702,7 +702,7 @@ union skinny_data {
 #endif
 
 /*
- * header is length+reserved
+ * header is length+version
  * body is type+data
  * length is length of body
  */