samisa 2004/09/08 23:11:45
Modified: c/src/common AxisConfig.cpp
Log:
Jira - AXISCPP-155 : Fixed roots of warning messages
Revision Changes Path
1.50 +2 -2 ws-axis/c/src/common/AxisConfig.cpp
Index: AxisConfig.cpp
===================================================================
RCS file: /home/cvs/ws-axis/c/src/common/AxisConfig.cpp,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- AxisConfig.cpp 7 Sep 2004 08:02:05 -0000 1.49
+++ AxisConfig.cpp 9 Sep 2004 06:11:45 -0000 1.50
@@ -182,8 +182,8 @@
// If the name/value pair is a reference to a WSDD file, then the file must exist.
// If the WSDD file does not exist, then echo a warning to the console.
- if (strcmp ("WSDDFilePath", key) == NULL ||
- strcmp ("ClientWSDDFilePath", key) == NULL)
+ if (strcmp ("WSDDFilePath", key) == 0 ||
+ strcmp ("ClientWSDDFilePath", key) == 0)
{
FILE *fp = fopen (pcValue + 1, "r");
|