aboutsummaryrefslogtreecommitdiffstats
path: root/ncp2222.py
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-02-11 08:47:22 +0000
committerGuy Harris <guy@alum.mit.edu>2003-02-11 08:47:22 +0000
commitc684f70d833cca4af79663a59694680c9c5ef0ea (patch)
treeeeb02f6efe49e3ba0806bac1fc77722c57d5e058 /ncp2222.py
parent6f4661637a982db57e28903f3c51c935ba0c6503 (diff)
The Novell Web site's information for Scan Directory Disk Space appears
to be correct; remove the comment about what was there not matching. Note that the PropertyValue item in a Write Property Value request should perhaps be omitted if MoreFlag isn't set (it appears to be garbage if it's not set). svn path=/trunk/; revision=7123
Diffstat (limited to 'ncp2222.py')
-rwxr-xr-xncp2222.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/ncp2222.py b/ncp2222.py
index 26573d54be..60d7e07894 100755
--- a/ncp2222.py
+++ b/ncp2222.py
@@ -25,7 +25,7 @@ http://developer.novell.com/ndk/doc/ncp/
for a badly-formatted HTML version of the same PDF.
-$Id: ncp2222.py,v 1.52 2003/02/08 06:25:35 guy Exp $
+$Id: ncp2222.py,v 1.53 2003/02/11 08:47:22 guy Exp $
Copyright (c) 2000-2002 by Gilbert Ramirez <gram@alumni.rice.edu>
@@ -8556,10 +8556,6 @@ def define_ncp2222():
# 2222/1628, 22/40
pkt = NCP(0x1628, "Scan Directory Disk Space", 'fileserver')
pkt.Request((17,271), [
- #
- # XXX - this didn't match what was in the spec for 22/40
- # on the Novell Web site.
- #
rec( 10, 1, DirHandle ),
rec( 11, 1, SearchAttributes ),
rec( 12, 4, SequenceNumber ),
@@ -9273,6 +9269,11 @@ def define_ncp2222():
rec( -1, 1, PropertySegment ),
rec( -1, 1, MoreFlag ),
rec( -1, (1,16), PropertyName ),
+ #
+ # XXX - don't show this if MoreFlag isn't set?
+ # In at least some packages where it's not set,
+ # PropertyValue appears to be garbage.
+ #
rec( -1, 128, PropertyValue ),
], info_str=(PropertyName, "Write Property Value: %s", ", %s"))
pkt.Reply(8)