The ASCII writer can now deal with /dev/* paths.

It will not longer try to add a ".log" extension.
This commit is contained in:
Robin Sommer 2011-03-08 17:58:03 -08:00
parent 4b7c5905f1
commit 26eab74ecc
5 changed files with 49 additions and 2 deletions

View file

@ -23,6 +23,8 @@ protected:
virtual void DoFinish();
private:
bool IsSpecial(string path) { return path.find("/dev/") == 0; }
FILE* file;
string fname;
};