diff options
author | Gerald Carter <jerry@samba.org> | 2002-08-17 13:17:41 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2002-08-17 13:17:41 +0000 |
commit | cb36e520b38edf063157024b46d9e58f8a341028 (patch) | |
tree | f1d64ca82eb2a4f4eba8d9ab4d0a872419c0548f /source3/rpc_parse/parse_spoolss.c | |
parent | 8f5f2eb454b89e0988ab795fb6e695a3d090c54d (diff) | |
download | samba-cb36e520b38edf063157024b46d9e58f8a341028.tar.gz samba-cb36e520b38edf063157024b46d9e58f8a341028.tar.bz2 samba-cb36e520b38edf063157024b46d9e58f8a341028.zip |
* the printing code should now be back to the working state it was
before the swap from NT_PRINTER_PARAM to REGISTRY_VALUE.
* XxxPrinterDataEx() functions have not been expanded to support
keys other than SPOOL_PRINTERDATA_KEY yet
* fixed apparent long standing bug regarding the dependentfiles
list in the DRIVER_INFO struct
(This used to be commit d59b0eb1236cf5bb9371030a94eb60d4131c15fb)
Diffstat (limited to 'source3/rpc_parse/parse_spoolss.c')
-rw-r--r-- | source3/rpc_parse/parse_spoolss.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_parse/parse_spoolss.c b/source3/rpc_parse/parse_spoolss.c index ac41a81a5a..3a7f4b57ae 100644 --- a/source3/rpc_parse/parse_spoolss.c +++ b/source3/rpc_parse/parse_spoolss.c @@ -5200,7 +5200,7 @@ static BOOL uniarray_2_dosarray(BUFFER5 *buf5, fstring **ar) *ar = NULL; while (src < ((char *)buf5->buffer) + buf5->buf_len*2) { - rpcstr_pull(f, src, sizeof(f)-1, 0, 0); + rpcstr_pull(f, src, sizeof(f)-1, -1, STR_TERMINATE); src = skip_unibuf(src, 2*buf5->buf_len - PTR_DIFF(src,buf5->buffer)); tar = (fstring *)Realloc(*ar, sizeof(fstring)*(n+2)); if (!tar) |