1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-13 13:18:06 +03:00

struct nmb_name should have 16 byte namestrings, not 17.

Jeremy.
(This used to be commit daf7b5fbd9)
This commit is contained in:
Jeremy Allison 2003-08-22 22:45:34 +00:00
parent 5dfeda0002
commit e745d4e602

View File

@ -1486,9 +1486,9 @@ struct cnotify_fns {
/* A netbios name structure. */
struct nmb_name {
char name[17];
char scope[64];
unsigned int name_type;
char name[16];
char scope[64];
unsigned int name_type;
};