aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2017-09-15 19:15:05 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2017-09-15 20:24:20 +0200
commitcad0cc552f9956af3fa90d12de443dabe5c7c320 (patch)
tree44cd5a32b4f2d93c999d6e25484d53069f7f04d4
parentfe9f88add068fa08831abe535ee013cbd63adb3a (diff)
smpp34_structs.h: Fix truncated output in str_tlv_id
Fixes compilation warning below: %s’ directive output may be truncated writing between 8 and 33 bytes into a regio n of size 30 [-Wformat-truncation=] snprintf(buff, SMALL_BUFF, "%s", ^~ /home/pespin/dev/sysmocom/bin/../git/libsmpp34/src/smpp34_params.c:136:5: note: ‘ snprintf’ output between 9 and 34 bytes into a destination of size 30 snprintf(buff, SMALL_BUFF, "%s", ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #define OPERACION( p_tlv_id ) (tlv_id == p_tlv_id)?#p_tlv_id: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #include "def_list/tlv_id.list" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ "Reserved" ~~~~~~~~~~ #undef OPERACION ~~~~~~~~~~~~~~~~ ); Change-Id: Ie2ba6182eb0cdd98cadb8317aef49141244aa92d
-rw-r--r--src/smpp34_structs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/smpp34_structs.h b/src/smpp34_structs.h
index 6b9f41e..71d22cd 100644
--- a/src/smpp34_structs.h
+++ b/src/smpp34_structs.h
@@ -23,7 +23,7 @@
#ifndef _STB_H_
#define _STB_H_
-#define SMALL_BUFF 30
+#define SMALL_BUFF 34
/* Identify PDUs ident ********************************************************/
#define MAX_TLV_SIZE 1024
#define MAX_DAD_SIZE 21