sal/osl/w32/file_error.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 7b5912ea2ba148ac9c1e68ecfa1846c94a44ff5a Author: Andrea Pescetti <[email protected]> Date: Tue Oct 20 21:55:51 2015 +0000 #i125194# Fix RC2 issue by changing approach. Patch by: Giuseppe Castagno diff --git a/sal/osl/w32/file_error.c b/sal/osl/w32/file_error.c index ae424a5..a5335b6 100644 --- a/sal/osl/w32/file_error.c +++ b/sal/osl/w32/file_error.c @@ -89,7 +89,7 @@ static const struct osl_file_error_entry errtable[] = { { ERROR_NOT_ENOUGH_QUOTA, osl_File_E_NOMEM }, /* 1816 */ { ERROR_CANT_ACCESS_FILE, osl_File_E_ACCES }, /* 1920 */ { ERROR_UNEXP_NET_ERR, osl_File_E_NETWORK }, /* 59 */ - { ERROR_FILE_CHECKED_OUT, osl_File_E_LOCKED }, /* 220 The file is locked or checked out by another user. */ + { ERROR_FILE_CHECKED_OUT, osl_File_E_ACCES }, /* 220 The file is locked or checked out by another user. */ { ERROR_INVALID_NAME, osl_File_E_NOENT } /* 123 One or more of the names composing the file path has a wrong syntax. */ }; _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
