diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-05-12 14:28:50 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-05-12 14:28:50 +0000 |
commit | b3373e99326cbb9147eb36f839e8b3fa9be43a29 (patch) | |
tree | 3eb543ac8341c174b7c86271efdb70bfa51a9045 /source3 | |
parent | fa659fea9b0b71bf62de9dfec61160196c828da1 (diff) | |
download | samba-b3373e99326cbb9147eb36f839e8b3fa9be43a29.tar.gz samba-b3373e99326cbb9147eb36f839e8b3fa9be43a29.tar.bz2 samba-b3373e99326cbb9147eb36f839e8b3fa9be43a29.zip |
changed uniarray_2_ascarray to uniarray_2_dosarray
(This used to be commit 4de7202da478baf232c93cc9b8d845889f1d2bab)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/rpc_parse/parse_spoolss.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/rpc_parse/parse_spoolss.c b/source3/rpc_parse/parse_spoolss.c index 987ae42ff4..270ce0ff8d 100644 --- a/source3/rpc_parse/parse_spoolss.c +++ b/source3/rpc_parse/parse_spoolss.c @@ -3957,8 +3957,8 @@ BOOL uni_2_asc_printer_driver_6(SPOOL_PRINTER_DRIVER_INFO_LEVEL_6 *uni, DEBUGADD(8,( "monitorname: %s\n", d->monitorname)); DEBUGADD(8,( "defaultdatatype: %s\n", d->defaultdatatype)); - uniarray_2_ascarray(&(uni->dependentfiles), &(d->dependentfiles) ); - uniarray_2_ascarray(&(uni->previousnames), &(d->previousnames) ); + uniarray_2_dosarray(&(uni->dependentfiles), &(d->dependentfiles) ); + uniarray_2_dosarray(&(uni->previousnames), &(d->previousnames) ); return True; } |