diff options
author | Simo Sorce <idra@samba.org> | 2001-10-09 19:12:18 +0000 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2001-10-09 19:12:18 +0000 |
commit | 52341e94a86420368b479acd2c760468444fef72 (patch) | |
tree | dc604e7a358d1598fb639272c3101d9239430cff /source3/lib/readline.c | |
parent | f5a5acec33160e9eedad079afe04597f796658d3 (diff) | |
download | samba-52341e94a86420368b479acd2c760468444fef72.tar.gz |
initial support to error report in smbclient, useful when using smbclient -c in scripts.
Thanks to Claudio Cicali aka FleXer for the initial patch
(This used to be commit 53b95b3c0fd087b1cade95fd8de849547ac3bfcb)
Diffstat (limited to 'source3/lib/readline.c')
-rw-r--r-- | source3/lib/readline.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/lib/readline.c b/source3/lib/readline.c index f7ef40b001c..2475017adf0 100644 --- a/source3/lib/readline.c +++ b/source3/lib/readline.c @@ -88,7 +88,7 @@ char *smb_readline(char *prompt, void (*callback)(void), /**************************************************************************** history ****************************************************************************/ -void cmd_history(void) +int cmd_history(void) { #if defined(HAVE_LIBREADLINE) HIST_ENTRY **hlist; @@ -102,4 +102,6 @@ void cmd_history(void) #else DEBUG(0,("no history without readline support\n")); #endif + + return 0; } |