To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=73661
User vq changed the following:
What |Old value |New value
================================================================================
Status|NEW |STARTED
--------------------------------------------------------------------------------
------- Additional comments from [EMAIL PROTECTED] Fri Jan 19 10:05:41 -0800
2007 -------
No, not an OOo problem.
This patch illustrates the problem:
+++ dmake/unix/dcache.c 19 Jan 2007 18:04:00 -0000
@@ -137,6 +137,8 @@
dp->path = DmStrDup(dir);
dp->hkey = hkey;
+ /* FIXME: On case sensitive fs this might fail if DcacheRespCase
+ * is set because dir was converted to lowercase. */
if (Set_dir(dir) == 0) {
if((dirp=opendir(".")) != NIL(DIR)) {
while((direntp=readdir(dirp)) != NULL) {
@@ -156,7 +158,8 @@
closedir(dirp);
}
Set_dir(Pwd);
- }
+ } else
+ Warning("Unable to stat contents of [%s]", dir);
}
Hash(comp, &hkey); /* Calculate hkey. */
---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]