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 | 4de7202da478baf232c93cc9b8d845889f1d2bab (patch) | |
tree | 9721a53f423128cdd595ae8e301ccd6e36f7403a /source/rpc_parse/parse_spoolss.c | |
parent | eefbfb5e16fcf40f335edc840a49f837f6b64111 (diff) | |
download | samba-4de7202da478baf232c93cc9b8d845889f1d2bab.tar.gz samba-4de7202da478baf232c93cc9b8d845889f1d2bab.tar.xz samba-4de7202da478baf232c93cc9b8d845889f1d2bab.zip |
changed uniarray_2_ascarray to uniarray_2_dosarray
Diffstat (limited to 'source/rpc_parse/parse_spoolss.c')
-rw-r--r-- | source/rpc_parse/parse_spoolss.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/rpc_parse/parse_spoolss.c b/source/rpc_parse/parse_spoolss.c index 987ae42ff4e..270ce0ff8da 100644 --- a/source/rpc_parse/parse_spoolss.c +++ b/source/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; } |