diff options
author | unknown <msvensson@neptunus.(none)> | 2006-02-13 14:02:39 +0100 |
---|---|---|
committer | unknown <msvensson@neptunus.(none)> | 2006-02-13 14:02:39 +0100 |
commit | a810361b31b5b5f34798b67085cdd9731ac304dd (patch) | |
tree | ff5a30f359fd8dc4be5bca098d0aa77e9b35d8ce /cmd-line-utils/libedit/readline.c | |
parent | 09a4aff4880b514def897cc0f22c43dc2c87144b (diff) | |
download | mariadb-git-a810361b31b5b5f34798b67085cdd9731ac304dd.tar.gz |
Bug#16557 mysql cmd-line client does not rename .mysql_history.TMP to .mysql_history
- Return error only if 'history' returns -1
cmd-line-utils/libedit/readline.c:
Return 1 to indicate error only if 'history' returned -1, since the history function normally will return the number of entries written or read. Only -1 indicates error.
Diffstat (limited to 'cmd-line-utils/libedit/readline.c')
-rw-r--r-- | cmd-line-utils/libedit/readline.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd-line-utils/libedit/readline.c b/cmd-line-utils/libedit/readline.c index 616b55a877e..8c09a6f39d5 100644 --- a/cmd-line-utils/libedit/readline.c +++ b/cmd-line-utils/libedit/readline.c @@ -1109,7 +1109,7 @@ read_history(const char *filename) if (h == NULL || e == NULL) rl_initialize(); - return (history(h, &ev, H_LOAD, filename)); + return (history(h, &ev, H_LOAD, filename) == -1); } @@ -1123,7 +1123,7 @@ write_history(const char *filename) if (h == NULL || e == NULL) rl_initialize(); - return (history(h, &ev, H_SAVE, filename)); + return (history(h, &ev, H_SAVE, filename) == -1); } |