From 6a29e563018d98f0db12576d79d0913f9d27a2c4 Mon Sep 17 00:00:00 2001 From: Mathieu Parent Date: Sun, 9 May 2010 23:24:06 +0200 Subject: [PATCH] Skinny: tiny change (comment) --- src/mod/endpoints/mod_skinny/skinny_protocol.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mod/endpoints/mod_skinny/skinny_protocol.h b/src/mod/endpoints/mod_skinny/skinny_protocol.h index aeaa42f09e..1f10c66be3 100644 --- a/src/mod/endpoints/mod_skinny/skinny_protocol.h +++ b/src/mod/endpoints/mod_skinny/skinny_protocol.h @@ -571,10 +571,11 @@ union skinny_data { /* * header is length+reserved * body is type+data + * length is length of body */ struct skinny_message { uint32_t length; - uint32_t reserved; + uint32_t version; uint32_t type; union skinny_data data; };