Skip to content
Snippets Groups Projects
Commit f6448465 authored by Fons Rademakers's avatar Fons Rademakers
Browse files

big bug in TNetFile, due to mistake in argument parsing could not create

new files via rootd anymore. Reported by Gerri Ganis.


git-svn-id: http://root.cern.ch/svn/root/trunk@5929 27541ba8-7e3a-0410-8455-c3a389f83636
parent 68d068c1
No related branches found
No related tags found
No related merge requests found
// @(#)root/net:$Name: $:$Id: TNetFile.cxx,v 1.28 2002/12/10 02:19:46 rdm Exp $
// @(#)root/net:$Name: $:$Id: TNetFile.cxx,v 1.29 2002/12/10 12:11:31 rdm Exp $
// Author: Fons Rademakers 14/08/97
/*************************************************************************
......@@ -169,10 +169,10 @@ TNetFile::TNetFile(const char *url, Option_t *option, const char *ftitle,
fOption = "CREATE";
Bool_t create = (fOption == "CREATE") ? kTRUE : kFALSE;
create = (fOption == "RECREATE") ? kTRUE : kFALSE;
Bool_t recreate = (fOption == "RECREATE") ? kTRUE : kFALSE;
Bool_t update = (fOption == "UPDATE") ? kTRUE : kFALSE;
Bool_t read = (fOption == "READ") ? kTRUE : kFALSE;
if (!create && !update && !read) {
if (!create && !recreate && !update && !read) {
read = kTRUE;
fOption = "READ";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment