Move prefs.c and prefs.h into the epan subdirectory.
[obnox/wireshark/wip.git] / epan / dissectors / packet-ntlmssp.c
index 2fe3f2c607a5fe7099a83232a780b597104b2c2d..d3067a26a16743707e9e725d78453cc978040a33 100644 (file)
@@ -39,7 +39,7 @@
 #include "asn1.h"              /* XXX - needed for subid_t */
 #include "packet-gssapi.h"
 #include "packet-frame.h"
-#include "prefs.h"
+#include <epan/prefs.h>
 #include "crypt-rc4.h"
 #include "crypt-md4.h"
 #include "crypt-des.h"
@@ -718,8 +718,19 @@ dissect_ntlmv2_response(tvbuff_t *tvb, proto_tree *tree, int offset, int len)
 
                if (name_type == 0) /* End of list */
                        break;
-       };
+       }
 
+       /*
+        * XXX - Windows puts 4 bytes of additional stuff here.
+        * Samba's smbclient doesn't.
+        * Both of them appear to be able to connect to W2K SMB
+        * servers.
+        * Should we display the rest of the response as an
+        * "extra data" item?
+        *
+        * XXX - we should also check whether we go past the length
+        * of the response.
+        */
        return offset;
 }