To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=76159
------- Additional comments from [EMAIL PROTECTED] Thu Apr 12 06:43:48 +0000
2007 -------
ericb->jkim
So, there is a 1.2 case ( FreeBSD for instance ), and the current patch must
take care of that.
>From my side, I got a patch with all changes sb asked, and working fine on
>both 10.3 and 10.4
Before to attach a wrong patch, I think ( Stephan will confirm/decide, because
I can be wrong ) :
#else
long m;
errno = 0;
m = sysconf(_SC_GETPW_R_SIZE_MAX);
if (m == -1) {
if (errno == 0) {
/* _SC_GETPW_R_SIZE_MAX has no limit: */
Should become :
#else
long m;
errno = 0;
m = sysconf(_SC_GETPW_R_SIZE_MAX);
if (m == -1) {
if ((errno == 0) || (errno==EINVAL)) {
/* _SC_GETPW_R_SIZE_MAX has no limit: */
If you are ok, I'll propose a final patch.
---------------------------------------------------------------------
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]