summaryrefslogtreecommitdiff
path: root/innobase
diff options
context:
space:
mode:
authorheikki@hundin.mysql.fi <>2005-03-03 17:50:04 +0200
committerheikki@hundin.mysql.fi <>2005-03-03 17:50:04 +0200
commitc93fcd19a5bc8eb2b34f19dd4c2b457fb9edaf94 (patch)
tree66f490fbb84f68e59fea82a4dcf1fd750a9e941f /innobase
parent80fca0a075f70807596aa87f6c896c23b137b51d (diff)
parentdf6d26e4bda11fbbaba12289638d04b4cc868b98 (diff)
downloadmariadb-git-c93fcd19a5bc8eb2b34f19dd4c2b457fb9edaf94.tar.gz
Merge
Diffstat (limited to 'innobase')
-rw-r--r--innobase/os/os0file.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/innobase/os/os0file.c b/innobase/os/os0file.c
index 93a914b8bbd..cc743ffad41 100644
--- a/innobase/os/os0file.c
+++ b/innobase/os/os0file.c
@@ -299,15 +299,6 @@ os_file_get_last_error(
return(OS_FILE_NOT_FOUND);
} else if (err == EEXIST) {
return(OS_FILE_ALREADY_EXISTS);
-#ifdef UNIV_AIX
- } else if (err == 0) {
- fprintf(stderr,
-"InnoDB: errno is 0. Since AIX 5.1 after security patch ML7 erroneously\n"
-"InnoDB: sets errno to 0 when it should be EEXIST, we assume that the real\n"
-"InnoDB: error here was EEXIST.\n");
-
- return(OS_FILE_ALREADY_EXISTS);
-#endif
} else {
return(100 + err);
}