diff options
author | Günther Deschner <gd@samba.org> | 2015-12-03 15:24:42 +0100 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2016-09-28 00:04:34 +0200 |
commit | 6e72edb7956acb1fbe7c648b79a8107ffaff8f20 (patch) | |
tree | 12e71ee6a25e5f47aadb2b23260381b28d7a3728 /source3/printing | |
parent | a72a52fca155e87dc7482e65f1d537f4877dcc3c (diff) | |
download | samba-6e72edb7956acb1fbe7c648b79a8107ffaff8f20.tar.gz |
werror: replace WERR_UNKNOWN_LEVEL with WERR_INVALID_LEVEL in source3/printing/nt_printing.c
Guenther
Signed-off-by: Guenther Deschner <gd@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/printing')
-rw-r--r-- | source3/printing/nt_printing.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c index 248193c389a..334a56e7556 100644 --- a/source3/printing/nt_printing.c +++ b/source3/printing/nt_printing.c @@ -1107,7 +1107,7 @@ WERROR move_driver_to_download_area(struct auth_session_info *session_info, break; default: DEBUG(0,("move_driver_to_download_area: Unknown info level (%u)\n", (unsigned int)r->level)); - return WERR_UNKNOWN_LEVEL; + return WERR_INVALID_LEVEL; } short_architecture = get_short_archi(driver->architecture); |