diff options
Diffstat (limited to 'epan/dissectors/packet-q708.c')
-rw-r--r-- | epan/dissectors/packet-q708.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/epan/dissectors/packet-q708.c b/epan/dissectors/packet-q708.c index b0d0037b..4fbf894e 100644 --- a/epan/dissectors/packet-q708.c +++ b/epan/dissectors/packet-q708.c @@ -17,10 +17,10 @@ void proto_register_q708(void); -static int proto_q708 = -1; -static int hf_q708_sanc = -1; -static int hf_q708_ispc_name = -1; -static int hf_q708_ispc_operator_name = -1; +static int proto_q708; +static int hf_q708_sanc; +static int hf_q708_ispc_name; +static int hf_q708_ispc_operator_name; /* * List of Signalling Area/Network Codes (SANC) @@ -3350,7 +3350,7 @@ static const value_string q708_ispc_point_name[] = { { 6335, "Dominguez Hills (1), CA" }, { 6336, "Dominguez Hills (2), CA" }, { 6337, "Irving (1), TX" }, - { 6338, "Sacremento, CA" }, + { 6338, "Sacramento, CA" }, { 6339, "Tampa, FL" }, { 6340, "Fort Worth" }, { 6341, "Dallas, TX" }, @@ -3367,7 +3367,7 @@ static const value_string q708_ispc_point_name[] = { { 6352, "New York City, NY" }, { 6353, "Los Angeles, CA" }, { 6354, "Tampa, FL" }, - { 6355, "Sacremento, CA" }, + { 6355, "Sacramento, CA" }, { 6356, "Wentzville, MO" }, { 6357, "Dallas (5), TX" }, { 6358, "Caparra, PR" }, @@ -14105,13 +14105,13 @@ static value_string_ext q708_sanc_areas_ext = VALUE_STRING_EXT_INIT(q708_sanc_ar /* * International signalling point codes (i.e. PCs with ni = 0) are allocated by the ITU, * according to the processes described in Q.708. ITU keeps a database of all registered - * ISPCs which is publically available, with updates being provided in the operational + * ISPCs which is publicly available, with updates being provided in the operational * bulletins. This function takes an ISPC and analyzes it according to these tables. */ void -analyze_q708_ispc(tvbuff_t *tvb, proto_tree *tree, int offset, int length, guint16 ispc) +analyze_q708_ispc(tvbuff_t *tvb, proto_tree *tree, int offset, int length, uint16_t ispc) { - guint16 sanc; + uint16_t sanc; sanc = ispc >> 3; |