1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-30 11:22:14 +03:00

os0file.c:

Fix bug in previous push
This commit is contained in:
heikki@hundin.mysql.fi
2003-03-07 10:20:44 +02:00
parent 184c7fee8d
commit 2f81f083d1

View File

@@ -196,7 +196,7 @@ os_file_get_last_error(void)
err = (ulint) GetLastError();
if (err != ERROR_DISK_FULL) {
if (err != ERROR_DISK_FULL && err != ERROR_FILE_EXISTS) {
ut_print_timestamp(stderr);
fprintf(stderr,
" InnoDB: Operating system error number %li in a file operation.\n"
@@ -234,7 +234,7 @@ os_file_get_last_error(void)
#else
err = (ulint) errno;
if (err != ENOSPC ) {
if (err != ENOSPC && err != EEXIST) {
ut_print_timestamp(stderr);
fprintf(stderr,