libndr: for now align reverse relative pointers to 2 bytes by default.
[abartlet/samba.git/.git] / librpc / ndr / ndr.c
index 93fbb995f9c327cbdea2b6794603d389361031d8..61745aa55acabcb83f637efba36f95e3d0f91634 100644 (file)
@@ -1222,6 +1222,9 @@ _PUBLIC_ enum ndr_err_code ndr_push_relative_ptr2_end(struct ndr_push *ndr, cons
        /* the reversed offset is at the end of the main buffer */
        correct_offset = ndr->relative_end_offset - len;
 
+       /* TODO: remove this hack and let the idl use FLAG_ALIGN2 explicit */
+       align = 2;
+
        if (ndr->flags & LIBNDR_FLAG_ALIGN2) {
                align = 2;
        } else if (ndr->flags & LIBNDR_FLAG_ALIGN4) {