diff options
author | Richard Sharpe <sharpe@samba.org> | 1998-09-27 08:29:50 +0000 |
---|---|---|
committer | Richard Sharpe <sharpe@samba.org> | 1998-09-27 08:29:50 +0000 |
commit | ecd8ca2431ef949a66433b3a72217dd485b1b300 (patch) | |
tree | b9bb30d9c2e943f2ac429e4907f573cc23ea902e /source3/client | |
parent | 6da95a6f1d17ad69ab572fbc627167f5edb593fb (diff) | |
download | samba-ecd8ca2431ef949a66433b3a72217dd485b1b300.tar.gz samba-ecd8ca2431ef949a66433b3a72217dd485b1b300.tar.bz2 samba-ecd8ca2431ef949a66433b3a72217dd485b1b300.zip |
Fixed up more possibly uninitialized variables.
Now only two compilation warnings seem to be left.
Luke may want to check the changes I made.
(This used to be commit 2456c95c1664a57aa939695c884ec666ec8168ec)
Diffstat (limited to 'source3/client')
-rw-r--r-- | source3/client/client.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 1d3623aef2..5d3f497ab1 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -3371,7 +3371,7 @@ static void cmd_help(char *dum_in, char *dum_out) } } - +#ifdef 0 /**************************************************************************** wait for keyboard activity, swallowing network packets @@ -3406,7 +3406,7 @@ static void wait_keyboard(char *buffer) chkpath("\\",False); } } - +#endif #ifdef HAVE_LIBREADLINE /**************************************************************************** @@ -3837,7 +3837,7 @@ static void usage(char *pname) if (getenv("PASSWD_FD") || getenv("PASSWD_FILE")) { int fd = -1; - BOOL close_it; + BOOL close_it = False; pstring spec; char pass[128]; |