diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-02-01 06:30:12 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-02-01 06:30:12 +0000 |
commit | 7c1698d3029538dbd53b4e605392bf42e8cb2909 (patch) | |
tree | 4bd814440fdd12871cae61b9bab3149dc3457159 /source3/include | |
parent | e0adea449aeb9432572ea0d8af014dcc2d0c4cf1 (diff) | |
download | samba-7c1698d3029538dbd53b4e605392bf42e8cb2909.tar.gz samba-7c1698d3029538dbd53b4e605392bf42e8cb2909.tar.bz2 samba-7c1698d3029538dbd53b4e605392bf42e8cb2909.zip |
Bitmap offsets and counts are always positive.
(This used to be commit 8f495e8634a1777c4b03d3ec07c76f905ff2fb98)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/smb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h index 8138555539..279b79eace 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -807,7 +807,7 @@ struct parm_struct struct bitmap { uint32 *b; - int n; + unsigned int n; }; #define FLAG_BASIC 0x0001 /* fundamental options */ |