Ignore:
Timestamp:
Jul 2, 2011, 3:35:33 PM (14 years ago)
Author:
Herwig Bauernfeind
Message:

Samba 3.5: Update trunk to 3.5.8

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/server/source3/rpcclient/cmd_spoolss.c

    r590 r596  
    18941894        /* delete the driver for all architectures */
    18951895        for (i=0; archi_table[i].long_archi; i++) {
     1896                result = WERR_OK;
     1897
    18961898                /* make the call to remove the driver */
    18971899                status = rpccli_spoolss_DeletePrinterDriver(cli, mem_ctx,
     
    19011903                                                            &result);
    19021904                if (!NT_STATUS_IS_OK(status)) {
    1903                         return result;
     1905                        if (W_ERROR_IS_OK(result)) {
     1906                                result = ntstatus_to_werror(status);
     1907                        }
    19041908                }
    19051909                if ( !W_ERROR_IS_OK(result) ) {
Note: See TracChangeset for help on using the changeset viewer.