Changeset 596 for trunk/server/source3/rpcclient/cmd_spoolss.c
- Timestamp:
- Jul 2, 2011, 3:35:33 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server/source3/rpcclient/cmd_spoolss.c
r590 r596 1894 1894 /* delete the driver for all architectures */ 1895 1895 for (i=0; archi_table[i].long_archi; i++) { 1896 result = WERR_OK; 1897 1896 1898 /* make the call to remove the driver */ 1897 1899 status = rpccli_spoolss_DeletePrinterDriver(cli, mem_ctx, … … 1901 1903 &result); 1902 1904 if (!NT_STATUS_IS_OK(status)) { 1903 return result; 1905 if (W_ERROR_IS_OK(result)) { 1906 result = ntstatus_to_werror(status); 1907 } 1904 1908 } 1905 1909 if ( !W_ERROR_IS_OK(result) ) {
Note:
See TracChangeset
for help on using the changeset viewer.