Ignore:
Timestamp:
Jul 1, 2011, 4:02:23 PM (14 years ago)
Author:
Herwig Bauernfeind
Message:

Samba 3.5: Update vendor to version 3.5.8

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source3/printing/nt_printing.c

    r587 r594  
    16261626        char *_p;
    16271627
    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) {
    16291633                return WERR_INVALID_PARAM;
    16301634        }
     
    16381642        strip_driver_path(mem_ctx, *driver_path);
    16391643        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        }
    16411647        if (help_file) {
    16421648                strip_driver_path(mem_ctx, *help_file);
Note: See TracChangeset for help on using the changeset viewer.