summaryrefslogtreecommitdiff
path: root/source3/libsmb/nmblib.c
diff options
context:
space:
mode:
authorRichard Sharpe <rsharpe@samba.org>2015-05-09 16:59:45 -0700
committerJeremy Allison <jra@samba.org>2015-05-13 19:11:23 +0200
commit5c1f8adc331a33c8fdd8e3995284d5833dc29f38 (patch)
treed654077d76c90e9dac42a83943a6b3a71bac1214 /source3/libsmb/nmblib.c
parentdffe228283ba756d4370753a1e2aed3cee3acccd (diff)
downloadsamba-5c1f8adc331a33c8fdd8e3995284d5833dc29f38.tar.gz
Convert all uint32/16/8 to _t in source3/libsmb.
Signed-off-by: Richard Sharpe <rsharpe@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/libsmb/nmblib.c')
-rw-r--r--source3/libsmb/nmblib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/nmblib.c b/source3/libsmb/nmblib.c
index 4adc3da5fab..8feb029b05e 100644
--- a/source3/libsmb/nmblib.c
+++ b/source3/libsmb/nmblib.c
@@ -1334,7 +1334,7 @@ static unsigned char *name_ptr(unsigned char *buf, size_t buf_len, unsigned int
c = *(unsigned char *)(buf+ofs);
if ((c & 0xC0) == 0xC0) {
- uint16 l = 0;
+ uint16_t l = 0;
if (ofs > buf_len - 1) {
return NULL;