Commit 085bb1c6 authored by unknown's avatar unknown

os0file.c:

  Fix bug in previous push


innobase/os/os0file.c:
  Fix bug in previous push
parent 121894d5
...@@ -196,7 +196,7 @@ os_file_get_last_error(void) ...@@ -196,7 +196,7 @@ os_file_get_last_error(void)
err = (ulint) GetLastError(); err = (ulint) GetLastError();
if (err != ERROR_DISK_FULL) { if (err != ERROR_DISK_FULL && err != ERROR_FILE_EXISTS) {
ut_print_timestamp(stderr); ut_print_timestamp(stderr);
fprintf(stderr, fprintf(stderr,
" InnoDB: Operating system error number %li in a file operation.\n" " InnoDB: Operating system error number %li in a file operation.\n"
...@@ -234,7 +234,7 @@ os_file_get_last_error(void) ...@@ -234,7 +234,7 @@ os_file_get_last_error(void)
#else #else
err = (ulint) errno; err = (ulint) errno;
if (err != ENOSPC ) { if (err != ENOSPC && err != EEXIST) {
ut_print_timestamp(stderr); ut_print_timestamp(stderr);
fprintf(stderr, fprintf(stderr,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment