summaryrefslogtreecommitdiff
path: root/source3/rpc_parse
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2008-04-24 14:04:47 -0700
committerJeremy Allison <jra@samba.org>2008-04-24 14:04:47 -0700
commit189eb93b73c4ff0737b702a0682727f5a22bcc38 (patch)
tree4f290744e907d0632938c0a903ffa0c0a978cbbe /source3/rpc_parse
parent051ff45c6041accdf4f74d33db16158a3aa95a4c (diff)
downloadsamba-189eb93b73c4ff0737b702a0682727f5a22bcc38.tar.gz
samba-189eb93b73c4ff0737b702a0682727f5a22bcc38.tar.bz2
samba-189eb93b73c4ff0737b702a0682727f5a22bcc38.zip
The first of Martin Zielinski <mz@seh.de> Vista printing patches.
Jerry will test and should get into 3.2 final (and the next 3.0.x release). Jeremy. (This used to be commit 3fc1ab210b8772ee9f867499c0b1a7bb4bcdd285)
Diffstat (limited to 'source3/rpc_parse')
-rw-r--r--source3/rpc_parse/parse_spoolss.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/source3/rpc_parse/parse_spoolss.c b/source3/rpc_parse/parse_spoolss.c
index bf7166b2ad..ec6d44293d 100644
--- a/source3/rpc_parse/parse_spoolss.c
+++ b/source3/rpc_parse/parse_spoolss.c
@@ -2129,7 +2129,12 @@ static bool smb_io_reldevmode(const char *desc, RPC_BUFFER *buffer, int depth, D
}
buffer->string_at_end -= ((*devmode)->size + (*devmode)->driverextra);
-
+
+ /* mz: we have to align the device mode for VISTA */
+ if (buffer->string_at_end % 4) {
+ buffer->string_at_end += 4 - (buffer->string_at_end % 4);
+ }
+
if(!prs_set_offset(ps, buffer->string_at_end))
return False;