aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bssgp.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-bssgp.c')
-rw-r--r--epan/dissectors/packet-bssgp.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/epan/dissectors/packet-bssgp.c b/epan/dissectors/packet-bssgp.c
index da93df96ac..4e5ff9663a 100644
--- a/epan/dissectors/packet-bssgp.c
+++ b/epan/dissectors/packet-bssgp.c
@@ -701,7 +701,7 @@ de_bssgp_bvci(tvbuff_t *tvb, proto_tree *tree, packet_info *pinfo _U_, guint32 o
curr_offset+=2;
if (add_string)
- g_snprintf(add_string, string_len, " - 0x%x", bvci);
+ snprintf(add_string, string_len, " - 0x%x", bvci);
return(curr_offset-offset);
@@ -856,7 +856,7 @@ de_bssgp_cell_id(tvbuff_t *tvb, proto_tree *tree, packet_info *pinfo, guint32 of
proto_tree_add_item(tree, hf_bssgp_ci, tvb, curr_offset, 2, ENC_BIG_ENDIAN);
curr_offset+=2;
if (add_string)
- g_snprintf(add_string, string_len, "%s, CI %u", add_string, ci);
+ snprintf(add_string, string_len, "%s, CI %u", add_string, ci);
return(curr_offset-offset);
@@ -922,7 +922,7 @@ de_bssgp_flush_action(tvbuff_t *tvb, proto_tree *tree, packet_info *pinfo _U_, g
proto_tree_add_item(tree, hf_bssgp_flush_action, tvb, curr_offset, 1, ENC_BIG_ENDIAN);
curr_offset+=1;
if (add_string)
- g_snprintf(add_string, string_len, " - %s", val_to_str_const(oct, bssgp_flush_action_vals, "Reserved"));
+ snprintf(add_string, string_len, " - %s", val_to_str_const(oct, bssgp_flush_action_vals, "Reserved"));
return(curr_offset-offset);
@@ -980,7 +980,7 @@ de_bssgp_llc_frames_disc(tvbuff_t *tvb, proto_tree *tree, packet_info *pinfo _U_
curr_offset+=1;
if (add_string)
- g_snprintf(add_string, string_len, " - %u Frames", oct);
+ snprintf(add_string, string_len, " - %u Frames", oct);
return(curr_offset-offset);
}
@@ -1418,7 +1418,7 @@ de_bssgp_no_of_oct_affected(tvbuff_t *tvb, proto_tree *tree, packet_info *pinfo
curr_offset+=3;
if (add_string)
- g_snprintf(add_string, string_len, " - %u", no_of_oct);
+ snprintf(add_string, string_len, " - %u", no_of_oct);
return(curr_offset-offset);
}
@@ -2310,7 +2310,7 @@ de_bssgp_rim_routing_inf(tvbuff_t *tvb, proto_tree *tree, packet_info *pinfo, gu
proto_tree_add_item(tree, hf_bssgp_rnc_id, tvb, curr_offset, 2, ENC_BIG_ENDIAN);
if (add_string)
- g_snprintf(add_string, string_len, " %s, RNC-ID %u", add_string, rnc_id);
+ snprintf(add_string, string_len, " %s, RNC-ID %u", add_string, rnc_id);
break;
case 2:
/* RIM Routing Address discriminator = 0010:
@@ -2764,7 +2764,7 @@ de_bssgp_rnc_identifier(tvbuff_t *tvb, proto_tree *tree, packet_info *pinfo, gui
curr_offset+=2;
if (add_string)
- g_snprintf(add_string, string_len, " %s, RNC-ID %u", add_string, rnc_id);
+ snprintf(add_string, string_len, " %s, RNC-ID %u", add_string, rnc_id);
return(curr_offset-offset);