You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by pe...@apache.org on 2015/10/20 23:54:15 UTC

svn commit: r1709685 - /openoffice/branches/AOO410/main/sal/osl/w32/file_error.c

Author: pescetti
Date: Tue Oct 20 21:54:15 2015
New Revision: 1709685

URL: http://svn.apache.org/viewvc?rev=1709685&view=rev
Log:
#i125194# Fix RC2 issue by changing approach.
Patch by: Giuseppe Castagno

Modified:
    openoffice/branches/AOO410/main/sal/osl/w32/file_error.c

Modified: openoffice/branches/AOO410/main/sal/osl/w32/file_error.c
URL: http://svn.apache.org/viewvc/openoffice/branches/AOO410/main/sal/osl/w32/file_error.c?rev=1709685&r1=1709684&r2=1709685&view=diff
==============================================================================
--- openoffice/branches/AOO410/main/sal/osl/w32/file_error.c (original)
+++ openoffice/branches/AOO410/main/sal/osl/w32/file_error.c Tue Oct 20 21:54:15 2015
@@ -89,7 +89,7 @@ static const struct osl_file_error_entry
   {  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. */
 };