Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 78973 invoked from network); 21 May 2008 17:39:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 21 May 2008 17:39:01 -0000 Received: (qmail 68017 invoked by uid 500); 21 May 2008 17:39:03 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 67790 invoked by uid 500); 21 May 2008 17:39:02 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 67781 invoked by uid 99); 21 May 2008 17:39:02 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 May 2008 10:39:02 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 May 2008 17:38:17 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6BF6A2388A14; Wed, 21 May 2008 10:38:38 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r658778 - /webservices/axis/trunk/c/src/common/AxisConfig.cpp Date: Wed, 21 May 2008 17:38:38 -0000 To: axis-cvs@ws.apache.org From: nadiramra@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080521173838.6BF6A2388A14@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: nadiramra Date: Wed May 21 10:38:37 2008 New Revision: 658778 URL: http://svn.apache.org/viewvc?rev=658778&view=rev Log: AXISCPP-1033 - do not issue message if config file is not found. Modified: webservices/axis/trunk/c/src/common/AxisConfig.cpp Modified: webservices/axis/trunk/c/src/common/AxisConfig.cpp URL: http://svn.apache.org/viewvc/webservices/axis/trunk/c/src/common/AxisConfig.cpp?rev=658778&r1=658777&r2=658778&view=diff ============================================================================== --- webservices/axis/trunk/c/src/common/AxisConfig.cpp (original) +++ webservices/axis/trunk/c/src/common/AxisConfig.cpp Wed May 21 10:38:37 2008 @@ -159,11 +159,7 @@ // Even if axiscpp.conf does not exist in AXISCPP_DEPLOY default values // will be used. Therefore return AXIS_SUCCESS if (AXIS_SUCCESS != fileConfig.fileOpen (sNewConfPath, "r")) - { - printf ("Warning - The configuration file was not found (%s).\n", sNewConfPath); - printf("Using default values\n"); return AXIS_SUCCESS; - } while (AXIS_SUCCESS == fileConfig.fileGet (carrLine, CONFBUFFSIZE)) {