diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 2002-05-17 05:00:50 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 2002-05-17 05:00:50 +0000 |
commit | f58590ef4c0b9999b3f1e054ab4630e8168040e5 (patch) | |
tree | bac9e8eac4b229d5a0b758a7318f92babc6646e1 /ncp2222.py | |
parent | 529e38321fb5cb60e327218683156806ad75a555 (diff) | |
download | wireshark-f58590ef4c0b9999b3f1e054ab4630e8168040e5.tar.gz wireshark-f58590ef4c0b9999b3f1e054ab4630e8168040e5.tar.bz2 wireshark-f58590ef4c0b9999b3f1e054ab4630e8168040e5.zip |
DirectoryBase should be a uint32.
svn path=/trunk/; revision=5495
Diffstat (limited to 'ncp2222.py')
-rwxr-xr-x | ncp2222.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ncp2222.py b/ncp2222.py index d945866712..9c71fe0af4 100755 --- a/ncp2222.py +++ b/ncp2222.py @@ -24,7 +24,7 @@ http://developer.novell.com/ndk/doc/docui/index.htm#../ncp/ncp__enu/data/ for a badly-formatted HTML version of the same PDF. -$Id: ncp2222.py,v 1.20 2002/05/16 09:59:51 guy Exp $ +$Id: ncp2222.py,v 1.21 2002/05/17 05:00:50 gram Exp $ Copyright (c) 2000-2002 by Gilbert Ramirez <gram@alumni.rice.edu> @@ -1584,7 +1584,7 @@ DirHandleName = uint8("dir_handle_name", "Handle Name") DirHandleLong = uint32("dir_handle_long", "Directory Handle") DirectoryAccessRights = uint8("directory_access_rights", "Directory Access Rights") DirectoryAttributes = uint8("directory_attributes", "Directory Attributes") -DirectoryBase = uint16("dir_base", "Directory Base") +DirectoryBase = uint32("dir_base", "Directory Base") DirectoryBase.Display("BASE_HEX") DirectoryCount = uint16("dir_count", "Directory Count") DirectoryEntryNumber = uint32("directory_entry_number", "Directory Entry Number") |