To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=105738
                 Issue #|105738
                 Summary|ucb: suspicious && || in NeonSession.cxx
               Component|ucb
                 Version|DEV300m61
                Platform|All
                     URL|
              OS/Version|Linux
                  Status|NEW
       Status whiteboard|
                Keywords|
              Resolution|
              Issue type|PATCH
                Priority|P3
            Subcomponent|code
             Assigned to|kso
             Reported by|cmc





------- Additional comments from [email protected] Thu Oct  8 16:09:51 +0000 
2009 -------
in NeonSession.cxx we've got...

bCanUseSystemCreds = (attempt == 0) && 
   ne_has_support( NE_FEATURE_SSPI ) && 
   ( ne_strcasecmp( inAuthProtocol, "NTLM" ) == 0 ) ||
   ( ne_strcasecmp( inAuthProtocol, "Negotiate" ) == 0 );

i.e. this is parsed as...

bCanUseSystemCreds = ((attempt == 0) && 
   ne_has_support( NE_FEATURE_SSPI ) && 
   ( ne_strcasecmp( inAuthProtocol, "NTLM" ) == 0 )) ||
   ( ne_strcasecmp( inAuthProtocol, "Negotiate" ) == 0 );

is that definitely the intent ? If so patch to remove new gcc warning attached.

---------------------------------------------------------------------
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]

Reply via email to