aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-11-22 12:51:14 +0000
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-11-22 12:51:14 +0000
commitc6a2d8e52b039dafb1d7932a2e86252655dbc813 (patch)
treea4bb31887c9cf77a5a40aa4b350530824d00d111 /epan
parent2e5caf11f2e40ac405ebbf6c217e492b0b1755c7 (diff)
Trivial warning fixes
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@16561 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-cmp.c2
-rw-r--r--epan/dissectors/packet-dcerpc-nt.c2
-rw-r--r--epan/dissectors/packet-dcp.c3
-rw-r--r--epan/dissectors/packet-giop.c3
-rw-r--r--epan/dissectors/packet-gnm.c2
-rw-r--r--epan/dissectors/packet-h245.c2
-rw-r--r--epan/dissectors/packet-h245.h4
-rw-r--r--epan/dissectors/packet-h248.h4
-rw-r--r--epan/dissectors/packet-iuup.c3
-rw-r--r--epan/dissectors/packet-kerberos.c2
-rw-r--r--epan/dissectors/packet-pres.c2
-rwxr-xr-xepan/dissectors/packet-pvfs2.c2
-rw-r--r--epan/dissectors/packet-rmt-norm.c2
-rw-r--r--epan/dissectors/packet-rmt-norm.h2
-rw-r--r--epan/dissectors/packet-x509if.c2
-rw-r--r--epan/dissectors/packet-x509if.h2
-rw-r--r--epan/dissectors/packet-xml.c16
-rw-r--r--epan/tvbparse.c2
18 files changed, 30 insertions, 27 deletions
diff --git a/epan/dissectors/packet-cmp.c b/epan/dissectors/packet-cmp.c
index 6bafc791f0..e3490e0910 100644
--- a/epan/dissectors/packet-cmp.c
+++ b/epan/dissectors/packet-cmp.c
@@ -1485,7 +1485,7 @@ dissect_cmp_http(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
tree = proto_item_add_subtree(item, ett_cmp);
}
- dissect_cmp_pdu(tvb, pinfo, tree);
+ return dissect_cmp_pdu(tvb, pinfo, tree);
}
diff --git a/epan/dissectors/packet-dcerpc-nt.c b/epan/dissectors/packet-dcerpc-nt.c
index 967623edd7..e58b83388c 100644
--- a/epan/dissectors/packet-dcerpc-nt.c
+++ b/epan/dissectors/packet-dcerpc-nt.c
@@ -810,7 +810,7 @@ static gint ett_nt_policy_hnd = -1;
*/
#define HND_TYPE_CTX_HANDLE 0
#define HND_TYPE_GUID 1
-int
+static int
dissect_nt_hnd(tvbuff_t *tvb, gint offset, packet_info *pinfo,
proto_tree *tree, guint8 *drep, int hfindex,
e_ctx_hnd *pdata, proto_item **pitem,
diff --git a/epan/dissectors/packet-dcp.c b/epan/dissectors/packet-dcp.c
index 64f3232fc9..13772d17d3 100644
--- a/epan/dissectors/packet-dcp.c
+++ b/epan/dissectors/packet-dcp.c
@@ -184,7 +184,8 @@ static gboolean try_heuristic_first = FALSE;
static gboolean dccp_check_checksum = TRUE;
-void decode_dccp_ports(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, int sport, int dport)
+static void
+decode_dccp_ports(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, int sport, int dport)
{
tvbuff_t *next_tvb;
int low_port, high_port;
diff --git a/epan/dissectors/packet-giop.c b/epan/dissectors/packet-giop.c
index 6bc8d84330..2455a5d8df 100644
--- a/epan/dissectors/packet-giop.c
+++ b/epan/dissectors/packet-giop.c
@@ -3973,7 +3973,8 @@ dissect_giop_tcp (tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree) {
get_giop_pdu_len, dissect_giop_common);
}
-gboolean dissect_giop_heur (tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree) {
+static gboolean
+dissect_giop_heur (tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree) {
guint tot_len;
diff --git a/epan/dissectors/packet-gnm.c b/epan/dissectors/packet-gnm.c
index 71bea12af7..968b7d78a9 100644
--- a/epan/dissectors/packet-gnm.c
+++ b/epan/dissectors/packet-gnm.c
@@ -3378,7 +3378,7 @@ dissect_gnm_attribute_ObjectInstance(tvbuff_t *tvb, packet_info *pinfo, proto_tr
}
-void
+static void
dissect_gnm(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
{
/* Dymmy function */
diff --git a/epan/dissectors/packet-h245.c b/epan/dissectors/packet-h245.c
index 631d95fcb9..e1f20c161f 100644
--- a/epan/dissectors/packet-h245.c
+++ b/epan/dissectors/packet-h245.c
@@ -1,6 +1,6 @@
/* Do not modify this file. */
/* It is created automatically by the ASN.1 to Ethereal dissector compiler */
-/* .\packet-h245.c */
+/* ./packet-h245.c */
/* ../../tools/asn2eth.py -X -e -p h245 -c h245.cnf -s packet-h245-template h245.asn */
/* Input file: packet-h245-template.c */
diff --git a/epan/dissectors/packet-h245.h b/epan/dissectors/packet-h245.h
index 72f897c937..03915553ce 100644
--- a/epan/dissectors/packet-h245.h
+++ b/epan/dissectors/packet-h245.h
@@ -1,6 +1,6 @@
/* Do not modify this file. */
/* It is created automatically by the ASN.1 to Ethereal dissector compiler */
-/* .\packet-h245.h */
+/* ./packet-h245.h */
/* ../../tools/asn2eth.py -X -e -p h245 -c h245.cnf -s packet-h245-template h245.asn */
/* Input file: packet-h245-template.h */
@@ -68,7 +68,7 @@ typedef enum {
al2WithSequenceNumbers,
al3,
/*...*/
- // al?M: unimplemented annex C adaptation layers
+ /* al?M: unimplemented annex C adaptation layers */
al1M,
al2M,
al3M
diff --git a/epan/dissectors/packet-h248.h b/epan/dissectors/packet-h248.h
index 89249df0cd..32dd26a15e 100644
--- a/epan/dissectors/packet-h248.h
+++ b/epan/dissectors/packet-h248.h
@@ -44,7 +44,7 @@ typedef enum {
H248_CMD_AUDITCAP,
H248_CMD_AUDITVAL,
H248_CMD_NOTIFY,
- H248_CMD_SVCCHG,
+ H248_CMD_SVCCHG
} h248_cmd_type_t;
typedef enum {
@@ -52,7 +52,7 @@ typedef enum {
H248_TRX_REQUEST,
H248_TRX_PENDING,
H248_TRX_REPLY,
- H248_TRX_ACK,
+ H248_TRX_ACK
} h248_msg_type_t;
/* per command info */
diff --git a/epan/dissectors/packet-iuup.c b/epan/dissectors/packet-iuup.c
index c9d772725a..b8caea5e05 100644
--- a/epan/dissectors/packet-iuup.c
+++ b/epan/dissectors/packet-iuup.c
@@ -314,7 +314,8 @@ static const value_string iuup_fqcs[] = {
{0,NULL}
};
-proto_item* proto_tree_add_bits(proto_tree* tree, int hf, tvbuff_t* tvb, int offset, int bit_offset, guint bits, gchar** buf) {
+static proto_item*
+proto_tree_add_bits(proto_tree* tree, int hf, tvbuff_t* tvb, int offset, int bit_offset, guint bits, gchar** buf) {
static const guint8 masks[] = {0x00,0x80,0xc0,0xe0,0xf0,0xf8,0xfc,0xfe};
int len = (bits + bit_offset)/8 + ((bits + bit_offset)%8 ? 0 : 1);
guint8* shifted_buffer;
diff --git a/epan/dissectors/packet-kerberos.c b/epan/dissectors/packet-kerberos.c
index ea922d37a5..84e675a0ab 100644
--- a/epan/dissectors/packet-kerberos.c
+++ b/epan/dissectors/packet-kerberos.c
@@ -1960,7 +1960,7 @@ dissect_krb5_etype_info_salt(packet_info *pinfo, proto_tree *tree, tvbuff_t *tvb
return offset;
}
-int
+static int
dissect_krb5_etype_info2_salt(packet_info *pinfo, proto_tree *tree, tvbuff_t *tvb, int offset)
{
offset=dissect_ber_GeneralString(pinfo, tree, tvb, offset, hf_krb_etype_info2_salt, NULL, 0);
diff --git a/epan/dissectors/packet-pres.c b/epan/dissectors/packet-pres.c
index 29c9ed07f4..b9744bd848 100644
--- a/epan/dissectors/packet-pres.c
+++ b/epan/dissectors/packet-pres.c
@@ -1481,7 +1481,7 @@ dissect_ppdu(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
return offset;
}
-void
+static void
dissect_pres(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
{
int offset = 0, old_offset;
diff --git a/epan/dissectors/packet-pvfs2.c b/epan/dissectors/packet-pvfs2.c
index f69a5d97bf..dea34011e1 100755
--- a/epan/dissectors/packet-pvfs2.c
+++ b/epan/dissectors/packet-pvfs2.c
@@ -746,7 +746,7 @@ dissect_pvfs2_ds_type(tvbuff_t *tvb, proto_tree *tree, int offset,
#define roundup4(x) (((x) + 3) & ~3)
#define roundup8(x) (((x) + 7) & ~7)
-int
+static int
dissect_pvfs_opaque_data(tvbuff_t *tvb, int offset,
proto_tree *tree,
packet_info *pinfo _U_,
diff --git a/epan/dissectors/packet-rmt-norm.c b/epan/dissectors/packet-rmt-norm.c
index 2372d2c8e7..1856756e39 100644
--- a/epan/dissectors/packet-rmt-norm.c
+++ b/epan/dissectors/packet-rmt-norm.c
@@ -229,7 +229,7 @@ static guint dissect_norm_hdrext(struct _norm *norm, struct _fec_ptr *f, proto_t
struct _ext *e = &g_array_index(ext, struct _ext, i);
lct_ext_decode(e, &lctp, tvb, ext_tree, ett.hdrext, *f);
-// fec_decode_ext_fti(e, tvb, ext_tree, ett.hdrext, *f);
+ /* fec_decode_ext_fti(e, tvb, ext_tree, ett.hdrext, *f); */
}
}
g_array_free(ext, TRUE);
diff --git a/epan/dissectors/packet-rmt-norm.h b/epan/dissectors/packet-rmt-norm.h
index b3b00f153c..adc40edcf8 100644
--- a/epan/dissectors/packet-rmt-norm.h
+++ b/epan/dissectors/packet-rmt-norm.h
@@ -90,7 +90,7 @@ enum {
NORM_FLAG_CC_PLR = 0x02,
NORM_FLAG_CC_RTT = 0x04,
NORM_FLAG_CC_START = 0x08,
- NORM_FLAG_CC_LEAVE = 0x10,
+ NORM_FLAG_CC_LEAVE = 0x10
};
diff --git a/epan/dissectors/packet-x509if.c b/epan/dissectors/packet-x509if.c
index 746a0d51c8..5106abbac1 100644
--- a/epan/dissectors/packet-x509if.c
+++ b/epan/dissectors/packet-x509if.c
@@ -2165,7 +2165,7 @@ static void dissect_DistinguishedName_PDU(tvbuff_t *tvb, packet_info *pinfo, pro
/*--- End of included file: packet-x509if-fn.c ---*/
-const char * x509if_get_last_dn()
+const char * x509if_get_last_dn(void)
{
return last_dn;
}
diff --git a/epan/dissectors/packet-x509if.h b/epan/dissectors/packet-x509if.h
index 5e510a6c6c..d8cd113eea 100644
--- a/epan/dissectors/packet-x509if.h
+++ b/epan/dissectors/packet-x509if.h
@@ -87,7 +87,7 @@ int dissect_x509if_MRSubstitution(gboolean implicit_tag, tvbuff_t *tvb, int offs
/*--- End of included file: packet-x509if-exp.h ---*/
-extern const char * x509if_get_last_dn();
+extern const char * x509if_get_last_dn(void);
#endif /* PACKET_X509IF_H */
diff --git a/epan/dissectors/packet-xml.c b/epan/dissectors/packet-xml.c
index 4b73e65673..4c4bb0043c 100644
--- a/epan/dissectors/packet-xml.c
+++ b/epan/dissectors/packet-xml.c
@@ -348,7 +348,7 @@ static void after_closed_tag(void* tvbparse_data, const void* wanted_data _U_, t
}
}
-void after_untag(void* tvbparse_data, const void* wanted_data _U_, tvbparse_elem_t* tok){
+static void after_untag(void* tvbparse_data, const void* wanted_data _U_, tvbparse_elem_t* tok){
GPtrArray* stack = tvbparse_data;
xml_frame_t* current_frame = g_ptr_array_index(stack,stack->len - 1);
@@ -444,7 +444,7 @@ static void unrecognized_token(void* tvbparse_data, const void* wanted_data _U_,
-void init_xml_parser(void) {
+static void init_xml_parser(void) {
tvbparse_wanted_t* want_name = tvbparse_chars(-1,1,0,"abcdefghijklmnopqrstuvwxyz-_ABCDEFGHIJKLMNOPQRSTUVWXYZ",NULL,NULL,NULL);
tvbparse_wanted_t* want_attr_name = tvbparse_chars(-1,1,0,"abcdefghijklmnopqrstuvwxyz-_ABCDEFGHIJKLMNOPQRSTUVWXYZ:",NULL,NULL,NULL);
@@ -572,7 +572,7 @@ void init_xml_parser(void) {
}
-xml_ns_t* xml_new_namespace(GHashTable* hash, gchar* name, ...) {
+static xml_ns_t* xml_new_namespace(GHashTable* hash, gchar* name, ...) {
xml_ns_t* ns = g_malloc(sizeof(xml_ns_t));
va_list ap;
gchar* attr_name;
@@ -600,7 +600,7 @@ xml_ns_t* xml_new_namespace(GHashTable* hash, gchar* name, ...) {
}
-void add_xml_field(GArray* hfs, int* p_id, gchar* name, gchar* fqn) {
+static void add_xml_field(GArray* hfs, int* p_id, gchar* name, gchar* fqn) {
hf_register_info hfri;
hfri.p_id = p_id;
@@ -621,14 +621,14 @@ void add_xml_field(GArray* hfs, int* p_id, gchar* name, gchar* fqn) {
g_array_append_val(hfs,hfri);
}
-void add_xml_attribute_names(gpointer k, gpointer v, gpointer p) {
+static void add_xml_attribute_names(gpointer k, gpointer v, gpointer p) {
struct _attr_reg_data* d = p;
gchar* basename = g_strdup_printf("%s.%s",d->basename,(gchar*)k);
add_xml_field(d->hf, (int*) v, (gchar*)k, basename);
}
-void add_xmlpi_namespace(gpointer k _U_, gpointer v, gpointer p) {
+static void add_xmlpi_namespace(gpointer k _U_, gpointer v, gpointer p) {
xml_ns_t* ns = v;
gchar* basename = g_strdup_printf("%s.%s",(gchar*)p,ns->name);
gint* ett_p = &(ns->ett);
@@ -1058,7 +1058,7 @@ next_attribute:
# define CLOSEDIR_OP(dir) g_dir_close(dir)
#endif
-void init_xml_names(void) {
+static void init_xml_names(void) {
xml_ns_t* xmlpi_xml_ns;
guint i;
DIRECTORY_T* dir;
@@ -1187,7 +1187,7 @@ proto_register_xml(void) {
}
-void add_dissector_media(gpointer k, gpointer v _U_, gpointer p _U_) {
+static void add_dissector_media(gpointer k, gpointer v _U_, gpointer p _U_) {
dissector_add_string("media_type", (gchar*)k, xml_handle);
}
diff --git a/epan/tvbparse.c b/epan/tvbparse.c
index 78dbffbde2..8a66bc903e 100644
--- a/epan/tvbparse.c
+++ b/epan/tvbparse.c
@@ -52,7 +52,7 @@ typedef enum _tvbparse_wanted_type_t {
TVBPARSE_WANTED_SET_ONEOF, /* one of the given types */
TVBPARSE_WANTED_SET_SEQ, /* an exact sequence of tokens of the given types */
TVBPARSE_WANTED_CARDINALITY, /* one or more tokens of the given type */
- TVBPARSE_WANTED_HANDLE, /* a handle to another one */
+ TVBPARSE_WANTED_HANDLE /* a handle to another one */
} tvbparse_type_t;