diff options
Diffstat (limited to 'libcli')
-rw-r--r-- | libcli/nbt/nbtname.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcli/nbt/nbtname.c b/libcli/nbt/nbtname.c index 792b340618..136379a313 100644 --- a/libcli/nbt/nbtname.c +++ b/libcli/nbt/nbtname.c @@ -173,9 +173,9 @@ _PUBLIC_ enum ndr_err_code ndr_push_nbt_string(struct ndr_push *ndr, int ndr_fla complen = strcspn(s, "."); /* we need to make sure the length fits into 6 bytes */ - if (complen >= 0x3F) { + if (complen > 0x3F) { return ndr_push_error(ndr, NDR_ERR_STRING, - "component length %u[%08X] > 0x00003F", + "component length %u[%08X] > 0x0000003F", (unsigned)complen, (unsigned)complen); } |