diff options
author | James Peach <jpeach@samba.org> | 2010-03-18 21:25:17 -0700 |
---|---|---|
committer | James Peach <jpeach@apple.com> | 2010-06-21 08:58:10 -0700 |
commit | 12e15b0ac800a84d553ff82c4c61ccc8da9fd5fd (patch) | |
tree | 32859a0e30a471d26f2117439385d2c69f0168f8 /source4/torture | |
parent | 6f96293406bfaff35e7588d0624842de145ff249 (diff) | |
download | samba-12e15b0ac800a84d553ff82c4c61ccc8da9fd5fd.tar.gz samba-12e15b0ac800a84d553ff82c4c61ccc8da9fd5fd.tar.xz samba-12e15b0ac800a84d553ff82c4c61ccc8da9fd5fd.zip |
smbtorture: Add history support to shell mode.
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/smbtorture.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/source4/torture/smbtorture.c b/source4/torture/smbtorture.c index 848773ee8a5..c1d32a769d7 100644 --- a/source4/torture/smbtorture.c +++ b/source4/torture/smbtorture.c @@ -33,6 +33,9 @@ #include "auth/gensec/gensec.h" #include "param/param.h" +#if HAVE_READLINE_HISTORY_H +#include <readline/history.h> +#endif static bool run_matching(struct torture_context *torture, const char *prefix, @@ -386,7 +389,11 @@ static void run_shell(struct torture_context *tctx) if (cline == NULL) return; - + +#if HAVE_ADD_HISTORY + add_history(cline); +#endif + ret = poptParseArgvString(cline, &argc, &argv); if (ret != 0) { fprintf(stderr, "Error parsing line\n"); |