Changeset 594 for vendor/current/source3/printing
- Timestamp:
- Jul 1, 2011, 4:02:23 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/printing/nt_printing.c
r587 r594 1626 1626 char *_p; 1627 1627 1628 if (!*driver_path || !*data_file || !*config_file) { 1628 if (!*driver_path || !*data_file) { 1629 return WERR_INVALID_PARAM; 1630 } 1631 1632 if (!strequal(architecture, SPOOLSS_ARCHITECTURE_4_0) && !*config_file) { 1629 1633 return WERR_INVALID_PARAM; 1630 1634 } … … 1638 1642 strip_driver_path(mem_ctx, *driver_path); 1639 1643 strip_driver_path(mem_ctx, *data_file); 1640 strip_driver_path(mem_ctx, *config_file); 1644 if (*config_file) { 1645 strip_driver_path(mem_ctx, *config_file); 1646 } 1641 1647 if (help_file) { 1642 1648 strip_driver_path(mem_ctx, *help_file);
Note:
See TracChangeset
for help on using the changeset viewer.