From 405b7d843f9103a29e923892337472e0fd891037 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 1 Oct 2010 10:33:32 +0200 Subject: s3-readline: move cmd_history to smbclient, the only user. Guenther --- source3/lib/readline.c | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'source3/lib/readline.c') diff --git a/source3/lib/readline.c b/source3/lib/readline.c index 1be0e05f7d..f20fc0f1db 100644 --- a/source3/lib/readline.c +++ b/source3/lib/readline.c @@ -172,24 +172,3 @@ void smb_readline_ca_char(char c) rl_completion_append_character = c; #endif } - -/**************************************************************************** -history -****************************************************************************/ -int cmd_history(void) -{ -#if defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_LIST) - HIST_ENTRY **hlist; - int i; - - hlist = history_list(); - - for (i = 0; hlist && hlist[i]; i++) { - DEBUG(0, ("%d: %s\n", i, hlist[i]->line)); - } -#else - DEBUG(0,("no history without readline support\n")); -#endif - - return 0; -} -- cgit