1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

- fixed a crash bug for 'print -'

- removed an unused variable
(This used to be commit 66af95716d)
This commit is contained in:
Andrew Tridgell 2002-07-13 03:51:28 +00:00
parent e40abc248f
commit ebfff1a475
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;