summaryrefslogtreecommitdiff
path: root/source3/client/smbmount.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1998-05-12 22:11:24 +0000
committerJeremy Allison <jra@samba.org>1998-05-12 22:11:24 +0000
commitee9a61841ac10d32d869a3893bc690c66f2bb1bb (patch)
tree451b75c7fd0b01a97dd9ef1285160d09c3a7d6c7 /source3/client/smbmount.c
parent785d23c6cb1f79dfc3e7db7b39e5ee51739ac737 (diff)
downloadsamba-ee9a61841ac10d32d869a3893bc690c66f2bb1bb.tar.gz
samba-ee9a61841ac10d32d869a3893bc690c66f2bb1bb.tar.bz2
samba-ee9a61841ac10d32d869a3893bc690c66f2bb1bb.zip
includes.h: SunOS doesn't have strcasecmp, solaris versions prior to 2.6 don't
have vsnprintf. locking_slow.c: slight tidy. make_smbcodepage.c: Use safe_strcpy instead of pstrcpy. nmbd_winsserver.c: Use pstrcpy instead of fstrcpy. smbmount.c: Fixed reported bug. util.c: Removed old fstrcpy/fstrcat functions. Jeremy. (This used to be commit f257d2e4bafd3944cca737699913a8d868279ca6)
Diffstat (limited to 'source3/client/smbmount.c')
-rw-r--r--source3/client/smbmount.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/client/smbmount.c b/source3/client/smbmount.c
index 1610a8986b..505552997b 100644
--- a/source3/client/smbmount.c
+++ b/source3/client/smbmount.c
@@ -426,7 +426,7 @@ static int process_tok(fstring tok)
/****************************************************************************
help
****************************************************************************/
-void cmd_help(void)
+void cmd_help(char *dum_in, char *dum_out)
{
int i=0,j;
fstring buf;
@@ -636,7 +636,7 @@ static BOOL process(char *base_directory)
DEBUG(0,("%s: command not found\n",CNV_LANG(tok)));
}
- cli_send_logout();
+ cli_send_logout(InBuffer,OutBuffer);
return(True);
}