summaryrefslogtreecommitdiff
path: root/source4/client/client.c
diff options
context:
space:
mode:
Diffstat (limited to 'source4/client/client.c')
-rw-r--r--source4/client/client.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source4/client/client.c b/source4/client/client.c
index a24fd7bfd3..5e5d7e5dcd 100644
--- a/source4/client/client.c
+++ b/source4/client/client.c
@@ -1069,7 +1069,7 @@ static BOOL do_altname(char *name)
****************************************************************************/
static int cmd_quit(const char **cmd_ptr)
{
- smbcli_shutdown(cli);
+ talloc_free(cli);
exit(0);
/* NOTREACHED */
return 0;
@@ -1263,7 +1263,7 @@ static int do_put(char *rname, char *lname, BOOL reput)
}
if (f == x_stdin) {
- smbcli_shutdown(cli);
+ talloc_free(cli);
exit(0);
}
@@ -3251,7 +3251,7 @@ static int process(char *base_directory)
process_stdin();
}
- smbcli_shutdown(cli);
+ talloc_free(cli);
return rc;
}
@@ -3287,12 +3287,12 @@ static int do_message_op(void)
if (!smbcli_transport_establish(cli, &calling, &called)) {
d_printf("session request failed\n");
- smbcli_shutdown(cli);
+ talloc_free(cli);
return 1;
}
send_message();
- smbcli_shutdown(cli);
+ talloc_free(cli);
return 0;
}