1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

s4:torture/drs: avoid '//' comments

The compiler on openindiana doesn't like them.

metze
This commit is contained in:
Stefan Metzmacher 2011-10-08 07:22:39 +02:00
parent f007f68f70
commit 627f930100

View File

@ -84,8 +84,8 @@ bool drs_util_oid_from_attid(struct torture_context *tctx,
if (lo_word >= 32768) {
lo_word -= 32768;
}
bin_oid.data[bin_oid.length-2] = ((lo_word / 128) % 128) + 128; // (0x80 | ((lo_word>>7) & 0x7f))
bin_oid.data[bin_oid.length-1] = lo_word % 128; // lo_word & 0x7f
bin_oid.data[bin_oid.length-2] = ((lo_word / 128) % 128) + 128; /* (0x80 | ((lo_word>>7) & 0x7f)) */
bin_oid.data[bin_oid.length-1] = lo_word % 128; /* lo_word & 0x7f */
}
torture_assert(tctx,