1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-09 08:58:35 +03:00

- fixed a crash bug for 'print -'

- removed an unused variable
This commit is contained in:
Andrew Tridgell -
parent 175d43980e
commit 66af95716d
2 changed files with 4 additions and 3 deletions

View File

@ -1123,7 +1123,10 @@ static int do_put(char *rname,char *lname)
}
x_fclose(f);
if (f != x_stdin) {
x_fclose(f);
}
SAFE_FREE(buf);
{

View File

@ -66,8 +66,6 @@ typedef struct
} stack;
static stack dir_stack = {NULL, 0}; /* Want an empty stack */
#define SEPARATORS " \t\n\r"
extern struct cli_state *cli;