[ 
https://issues.apache.org/jira/browse/AXIS2C-1253?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12658470#action_12658470
 ] 

S.Uthaiyashankar commented on AXIS2C-1253:
------------------------------------------

I feel keeping strcmp is more readable. So leaving it as it is. Fixed AND to OR 
as specified above. 

> hello.c online example doc
> --------------------------
>
>                 Key: AXIS2C-1253
>                 URL: https://issues.apache.org/jira/browse/AXIS2C-1253
>             Project: Axis2-C
>          Issue Type: Task
>          Components: documentation
>         Environment: axis2c-bin-1.5.0-win32
>            Reporter: b v j
>            Assignee: S.Uthaiyashankar
>            Priority: Trivial
>             Fix For: 1.6.0
>
>
> The following excerpt was taken from the online hello.c example html:
> http://ws.apache.org/axis2/c/docs/hello/client/hello.c.html
>     client_home = AXIS2_GETENV("AXIS2C_HOME");
>     if (!client_home && !strcmp(client_home, ""))
>         client_home = "../..";
> The test should be an OR statement instead of an AND statement. Not 
> necessary, but also simplified by removing strcmp:
>     client_home = AXIS2_GETENV("AXIS2C_HOME");
>     if (!client_home || !(*client_home))
>         client_home = "../..";

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to