diff options
author | Jeremy Allison <jra@samba.org> | 2001-10-19 00:02:36 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-10-19 00:02:36 +0000 |
commit | b49b5b94818827da43dee53346ced84c789fd73d (patch) | |
tree | dbc9d3a2d5d636f1defdfd6c42f1abcefb2668ca /source3/client | |
parent | c416ff851b4ecc7a44aee9d00d07dd481d8ae2a7 (diff) | |
download | samba-b49b5b94818827da43dee53346ced84c789fd73d.tar.gz samba-b49b5b94818827da43dee53346ced84c789fd73d.tar.bz2 samba-b49b5b94818827da43dee53346ced84c789fd73d.zip |
client : Fixed error return.
uid.c: Added missing void.
Jeremy.
(This used to be commit c2e06ed2219860479868fd1ac18013ae4f891e10)
Diffstat (limited to 'source3/client')
-rw-r--r-- | source3/client/client.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 1317346df3..f58f71f884 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -971,6 +971,8 @@ static int cmd_quit(void) { cli_shutdown(cli); exit(0); + /* NOTREACHED */ + return 0; } |