tng         2002/11/04 06:09:16

  Modified:    c/samples/SAXCount SAXCount.cpp
  Log:
  [Bug 14201] use of ios::nocreate breaks build.
  
  Revision  Changes    Path
  1.24      +4 -1      xml-xerces/c/samples/SAXCount/SAXCount.cpp
  
  Index: SAXCount.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/samples/SAXCount/SAXCount.cpp,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- SAXCount.cpp      1 Nov 2002 22:05:44 -0000       1.23
  +++ SAXCount.cpp      4 Nov 2002 14:09:16 -0000       1.24
  @@ -56,6 +56,9 @@
   
   /*
   * $Log$
  +* Revision 1.24  2002/11/04 14:09:16  tng
  +* [Bug 14201] use of ios::nocreate breaks build.
  +*
   * Revision 1.23  2002/11/01 22:05:44  tng
   * Samples/Test update: Issue error if the list file failed to open.
   *
  @@ -313,7 +316,7 @@
   
       // the input is a list file
       if (doList)
  -        fin.open(argV[argInd],ios::nocreate);
  +        fin.open(argV[argInd]);
   
       if (fin.fail()) {
           cerr <<"Cannot open the list file: " << argV[argInd] << endl;
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to