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 | 15fe22ff9dabb694fbf58a3083c5fb4da02e655a (patch) | |
tree | 4f7e3b43c31457eb35f487e3a07132abf8212077 /mysys/errors.c | |
parent | 4e9fb2c76f65e9949ebd3bbe2608f6a3b80a3822 (diff) | |
parent | cc1288349f7af7937d30921d80d761889e88e9b6 (diff) | |
download | mariadb-git-15fe22ff9dabb694fbf58a3083c5fb4da02e655a.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 |