You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@apache.org on 2008/04/06 02:48:52 UTC

svn commit: r645191 - /xalan/c/trunk/Tests/Conf/conf.cpp

Author: dbertoni
Date: Sat Apr  5 17:48:51 2008
New Revision: 645191

URL: http://svn.apache.org/viewvc?rev=645191&view=rev
Log:
Don't prepend drive letter to output file path.

Modified:
    xalan/c/trunk/Tests/Conf/conf.cpp

Modified: xalan/c/trunk/Tests/Conf/conf.cpp
URL: http://svn.apache.org/viewvc/xalan/c/trunk/Tests/Conf/conf.cpp?rev=645191&r1=645190&r2=645191&view=diff
==============================================================================
--- xalan/c/trunk/Tests/Conf/conf.cpp (original)
+++ xalan/c/trunk/Tests/Conf/conf.cpp Sat Apr  5 17:48:51 2008
@@ -275,14 +275,10 @@
         {
             XalanTransformer    xalan(theMemoryManager);
 
-            // Get drive designation for final analysis and generate Unique name for results log.
-            //
-            XalanDOMString  drive(theMemoryManager);            // This is used to get stylesheet for final analysis
-            h.getDrive(drive);
             const XalanDOMString  resultFilePrefix("conf", theMemoryManager);       // This & UniqRunid used for log file name.
             XalanDOMString  UniqRunid(theMemoryManager); 
             h.generateUniqRunid(UniqRunid);
-            XalanDOMString  resultsFile(drive, theMemoryManager);
+            XalanDOMString  resultsFile(theMemoryManager);
             resultsFile += h.args.output;
             resultsFile += resultFilePrefix;
             resultsFile += UniqRunid;



---------------------------------------------------------------------
To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org