aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-netbios.h
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2006-01-20 21:18:18 +0000
committerJörg Mayer <jmayer@loplof.de>2006-01-20 21:18:18 +0000
commita052b3a98b5ddb839ad5c7bb22c8ed06cfca3f58 (patch)
tree016767623fc98e98b07e2c39e6ab1e27f4febf89 /epan/dissectors/packet-netbios.h
parent613d04a1ce869e9811eb13f4cf5a1a5b0bb5c632 (diff)
packet-bgp.c: Fix incorrect use of g_snprintf return value
mp_addr_to_str was unnecessary 'complex' - simplified it packet-dns.c: Fix incorrect use of g_snprintf return value packet-dcm.c: Fix incorrect use of g_snprintf return value Someone who understands the protocol should look at the "vr, tr might be used uninitialized..." warning. packet-x11.c: Fix incorrect use of g_snprintf return value packet-kerberos.c: Fix incorrect use of g_snprintf return value Someone should take a look at the "longjump might clobber ..." messages packet-diameter.c: Fix incorrect use of g_snprintf return value Get rid of unsigned < 0 check packet-pgm.c: Fix incorrect use of g_snprintf return value packet-nbns.c: Fix incorrect use of g_snprintf return value packet-winsrepl.c: Collateral damage to packet-nbns.c fix packet-netbios.c: Collateral damage to packet-nbns.c fix packet-netbios.h: Collateral damage to packet-nbns.c fix packet-kerberos.c: Collateral damage to packet-nbns.c fix packet-nbipx.c: Collateral damage to packet-nbns.c fix svn path=/trunk/; revision=17065
Diffstat (limited to 'epan/dissectors/packet-netbios.h')
-rw-r--r--epan/dissectors/packet-netbios.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-netbios.h b/epan/dissectors/packet-netbios.h
index 67bc8496e7..c8c0194943 100644
--- a/epan/dissectors/packet-netbios.h
+++ b/epan/dissectors/packet-netbios.h
@@ -34,9 +34,9 @@
void capture_netbios(packet_counts *);
-extern int process_netbios_name(const guchar *name_ptr, char *name_ret);
+extern int process_netbios_name(const guchar *name_ptr, char *name_ret, int name_ret_len);
extern int get_netbios_name(tvbuff_t *tvb, int offset,
- char *name_ret);
+ char *name_ret, int name_ret_len);
extern const char *netbios_name_type_descr(int name_type);
extern void netbios_add_name( const char* label, tvbuff_t *tvb, int offset,
proto_tree *tree);