diff options
author | Ramil Kalimullin <ramil@mysql.com> | 2010-12-09 13:49:11 +0300 |
---|---|---|
committer | Ramil Kalimullin <ramil@mysql.com> | 2010-12-09 13:49:11 +0300 |
commit | 4faf016186f1727f0d7aec09ba30f9521566c98c (patch) | |
tree | 4f7e3b43c31457eb35f487e3a07132abf8212077 /mysys/errors.c | |
parent | 884788797c826670b65b0923963c46ea0cec934d (diff) | |
parent | 3d67785ecc176d1564b2ac42a48d6882b88639e0 (diff) | |
download | mariadb-git-4faf016186f1727f0d7aec09ba30f9521566c98c.tar.gz |
Manual merge with mysql-5.1-bugteam.
Diffstat (limited to 'mysys/errors.c')
-rw-r--r-- | mysys/errors.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysys/errors.c b/mysys/errors.c index 8bc310652f1..c74ed292906 100644 --- a/mysys/errors.c +++ b/mysys/errors.c @@ -52,6 +52,7 @@ const char *globerrs[GLOBERRS]= "File '%s' (fileno: %d) was not closed", "Can't change ownership of the file '%s' (Errcode: %d)", "Can't change permissions of the file '%s' (Errcode: %d)", + "Can't seek in file '%s' (Errcode: %d)" }; void init_glob_errs(void) @@ -94,6 +95,7 @@ void init_glob_errs() EE(EE_FILE_NOT_CLOSED) = "File '%s' (fileno: %d) was not closed"; EE(EE_CHANGE_OWNERSHIP) = "Can't change ownership of the file '%s' (Errcode: %d)"; EE(EE_CHANGE_PERMISSIONS) = "Can't change permissions of the file '%s' (Errcode: %d)"; + EE(EE_CANT_SEEK) = "Can't seek in file '%s' (Errcode: %d)"; } #endif |