diff options
author | msvensson@neptunus.(none) <> | 2006-02-21 08:57:18 +0100 |
---|---|---|
committer | msvensson@neptunus.(none) <> | 2006-02-21 08:57:18 +0100 |
commit | db9538c3bb482ca18ef548589222645eb28a0f53 (patch) | |
tree | 273f93481e28c10d6c8c6ddc3d04938f58005743 /cmd-line-utils | |
parent | ffa538e31e961812633e1e4e6f7a172f1ede2ba7 (diff) | |
parent | 26d5e2d83239f956302ae16c2703df3327022ad6 (diff) | |
download | mariadb-git-db9538c3bb482ca18ef548589222645eb28a0f53.tar.gz |
Merge neptunus.(none):/home/msvensson/mysql/bug16557/my50-bug16557
into neptunus.(none):/home/msvensson/mysql/bug16557/my51-bug16557
Diffstat (limited to 'cmd-line-utils')
-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); } |