diff options
author | Jeremy Allison <jra@samba.org> | 2000-08-30 00:45:59 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2000-08-30 00:45:59 +0000 |
commit | d407579b94ee2647d1e51c536534024e5c4c51ad (patch) | |
tree | c4a3ae28143ea3bfc4fe11022455b3d85f94c321 /source3/lib | |
parent | 3b33053b886b88bb7546f77dcdb038fcdc501c6c (diff) | |
download | samba-d407579b94ee2647d1e51c536534024e5c4c51ad.tar.gz samba-d407579b94ee2647d1e51c536534024e5c4c51ad.tar.bz2 samba-d407579b94ee2647d1e51c536534024e5c4c51ad.zip |
Implemented AbortPrinter() from Gerald's Win32 test code. Just purge all
possible printjobs from that printer (I think this is correct).
Added error code returns for print_queue_XXX() functions.
Jeremy.
(This used to be commit 6d081a9017f87f59b7189ba507e211db01c40af5)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/cmd_interp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/lib/cmd_interp.c b/source3/lib/cmd_interp.c index 0030710052..d2aafa8b5d 100644 --- a/source3/lib/cmd_interp.c +++ b/source3/lib/cmd_interp.c @@ -214,6 +214,8 @@ static uint32 cmd_quit(struct client_info *info, int argc, char *argv[]) free_connections(); exit(0); + /* NOTREACHED */ + return 0; } /**************************************************************************** |