aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gsm_sms.c
diff options
context:
space:
mode:
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-07-30 01:01:02 +0000
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-07-30 01:01:02 +0000
commitae64f581d56488f92c6c08fe2dfbeb77484df508 (patch)
treeed2fe5de1d2a6b127f90d567fa0f4d98d5f4717d /epan/dissectors/packet-gsm_sms.c
parent5c87044c13b3c2a696847b767df17e8de59a1e03 (diff)
Make some funtions static. More char -> const char warning fixes
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15146 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-gsm_sms.c')
-rw-r--r--epan/dissectors/packet-gsm_sms.c36
1 files changed, 18 insertions, 18 deletions
diff --git a/epan/dissectors/packet-gsm_sms.c b/epan/dissectors/packet-gsm_sms.c
index 4c4712927f..d1cfde99a1 100644
--- a/epan/dissectors/packet-gsm_sms.c
+++ b/epan/dissectors/packet-gsm_sms.c
@@ -94,8 +94,8 @@
}
-static char *gsm_sms_proto_name = "GSM SMS TPDU (GSM 03.40)";
-static char *gsm_sms_proto_name_short = "GSM SMS";
+static const char *gsm_sms_proto_name = "GSM SMS TPDU (GSM 03.40)";
+static const char *gsm_sms_proto_name_short = "GSM SMS";
/* Initialize the subtree pointers */
static gint ett_gsm_sms = -1;
@@ -212,12 +212,12 @@ static gint ett_udh_ieis[NUM_UDH_IEIS];
}
static void
-dis_field_addr(tvbuff_t *tvb, proto_tree *tree, guint32 *offset_p, gchar *title)
+dis_field_addr(tvbuff_t *tvb, proto_tree *tree, guint32 *offset_p, const gchar *title)
{
static gchar digit_table[] = {"0123456789*#abc\0"};
proto_item *item;
proto_tree *subtree = NULL;
- gchar *str = NULL;
+ const gchar *str = NULL;
guint8 oct;
guint32 offset;
guint32 numdigocts;
@@ -354,7 +354,7 @@ dis_field_pid(tvbuff_t *tvb, proto_tree *tree, guint32 offset, guint8 oct)
proto_tree *subtree = NULL;
guint8 form;
guint8 telematic;
- gchar *str = NULL;
+ const gchar *str = NULL;
item =
@@ -514,7 +514,7 @@ dis_field_dcs(tvbuff_t *tvb, proto_tree *tree, guint32 offset, guint8 oct,
proto_item *item;
proto_tree *subtree = NULL;
guint8 form;
- gchar *str = NULL;
+ const gchar *str = NULL;
gboolean default_5_bits;
gboolean default_3_bits;
gboolean default_data;
@@ -1107,15 +1107,15 @@ dis_field_dt(tvbuff_t *tvb, proto_tree *tree, guint32 *offset_p)
static void
dis_field_st(tvbuff_t *tvb, proto_tree *tree, guint32 offset, guint8 oct)
{
- static gchar *sc_complete = "Short message transaction completed";
- static gchar *sc_temporary = "Temporary error, SC still trying to transfer SM";
- static gchar *sc_perm = "Permanent error, SC is not making any more transfer attempts";
- static gchar *sc_tempfin = "Temporary error, SC is not making any more transfer attempts";
+ static const gchar *sc_complete = "Short message transaction completed";
+ static const gchar *sc_temporary = "Temporary error, SC still trying to transfer SM";
+ static const gchar *sc_perm = "Permanent error, SC is not making any more transfer attempts";
+ static const gchar *sc_tempfin = "Temporary error, SC is not making any more transfer attempts";
proto_item *item;
proto_tree *subtree = NULL;
guint8 value;
- gchar *str = NULL;
- gchar *str2 = NULL;
+ const gchar *str = NULL;
+ const gchar *str2 = NULL;
item =
@@ -1308,7 +1308,7 @@ dis_field_fcs(tvbuff_t *tvb, proto_tree *tree, guint32 offset, guint8 oct)
{
proto_item *item;
proto_tree *subtree = NULL;
- gchar *str = NULL;
+ const gchar *str = NULL;
item =
@@ -1531,7 +1531,7 @@ gsm_sms_char_ascii_decode(unsigned char* dest, const unsigned char* src, int len
static void
dis_iei_apa_8bit(tvbuff_t *tvb, proto_tree *tree, guint32 offset, guint8 length)
{
- gchar *str = NULL;
+ const gchar *str = NULL;
guint8 oct;
@@ -1576,7 +1576,7 @@ dis_iei_apa_8bit(tvbuff_t *tvb, proto_tree *tree, guint32 offset, guint8 length)
static void
dis_iei_apa_16bit(tvbuff_t *tvb, proto_tree *tree, guint32 offset, guint8 length)
{
- gchar *str = NULL;
+ const gchar *str = NULL;
guint32 value;
@@ -1633,7 +1633,7 @@ dis_field_ud_iei(tvbuff_t *tvb, proto_tree *tree, guint32 offset, guint8 length)
guint8 oct;
proto_item *item;
proto_tree *subtree = NULL;
- gchar *str = NULL;
+ const gchar *str = NULL;
guint8 iei_len;
@@ -2129,7 +2129,7 @@ dis_msg_submit(tvbuff_t *tvb, proto_tree *tree, guint32 offset)
guint8 oct;
guint8 vp_form;
guint8 udl;
- gchar *str = NULL;
+ const gchar *str = NULL;
gboolean seven_bit;
gboolean eight_bit;
gboolean ucs2;
@@ -2423,7 +2423,7 @@ dis_msg_command(tvbuff_t *tvb, proto_tree *tree, guint32 offset)
guint32 length;
guint8 oct;
guint8 cdl;
- gchar *str = NULL;
+ const gchar *str = NULL;
gboolean udhi;