1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-18 00:23:50 +03:00

struct nmb_name should have 16 byte namestrings, not 17.

Jeremy.
This commit is contained in:
Jeremy Allison
-
parent ecb8057387
commit daf7b5fbd9

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;
};