]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
skinny correct field name
authorNathan Neulinger <nneul@neulinger.org>
Fri, 12 Jul 2013 16:05:18 +0000 (11:05 -0500)
committerNathan Neulinger <nneul@neulinger.org>
Fri, 12 Jul 2013 16:05:18 +0000 (11:05 -0500)
src/mod/endpoints/mod_skinny/skinny_protocol.c
src/mod/endpoints/mod_skinny/skinny_protocol.h

index eb472167ee250525a9ca399e468c2dfbdd514fd5..fa27bd1de3456f236d8639ca1b608642a6325a00 100644 (file)
@@ -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,
index dcea93f8914e1e02a137fb54959bf83f5f53ccc0..d3b84ffabc63f7181dc3706e4e6fd258b80baedd 100644 (file)
@@ -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
  */