aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-02-11 02:45:16 +0000
committerGuy Harris <guy@alum.mit.edu>2012-02-11 02:45:16 +0000
commit3301c4cb85569b8ffffc627b87fceb74054067a7 (patch)
tree0c4343303de307995071ed675eccfe8e8353cda8
parent357a3e28375c71dc1b57b9603c2c95b8b8834598 (diff)
Get rid of C++/C99-style comment; use #if 0/#endif instead.
svn path=/trunk/; revision=40964
-rw-r--r--epan/dissectors/packet-dcerpc-netlogon.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/epan/dissectors/packet-dcerpc-netlogon.c b/epan/dissectors/packet-dcerpc-netlogon.c
index ccc6654008..859334aa0f 100644
--- a/epan/dissectors/packet-dcerpc-netlogon.c
+++ b/epan/dissectors/packet-dcerpc-netlogon.c
@@ -6952,7 +6952,9 @@ netlogon_dissect_netrserverauthenticate23_reply(tvbuff_t *tvb, int offset,
md5_hmac(md5,16,(guint8*) &password,16,session_key);
crypt_des_ecb(buf,(unsigned char*)&vars->server_challenge,session_key,1);
crypt_des_ecb((unsigned char*)&calculated_cred,buf,session_key+7,1);
- //printnbyte((guint8*)&calculated_cred,8,"Calculated creds:","\n");
+#if 0
+ printnbyte((guint8*)&calculated_cred,8,"Calculated creds:","\n");
+#endif
if(calculated_cred==server_cred) {
found = 1;
break;