diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-29 17:12:47 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-29 17:12:47 +0000 |
commit | 08a006d08a4c35d2c3ecc9a3d10cf7fd14661a84 (patch) | |
tree | 0cfc4f0736babb895eb97a65c6defe632a0249c7 /www/aria/files/patch-src__HistoryWindow.cc | |
parent | editors/fte: update to 20110708 (diff) |
Rename all patches that contain '::' as a path separator, and use
'__' instead.
Diffstat (limited to 'www/aria/files/patch-src__HistoryWindow.cc')
-rw-r--r-- | www/aria/files/patch-src__HistoryWindow.cc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/www/aria/files/patch-src__HistoryWindow.cc b/www/aria/files/patch-src__HistoryWindow.cc new file mode 100644 index 000000000000..f6f8aed8cdd2 --- /dev/null +++ b/www/aria/files/patch-src__HistoryWindow.cc @@ -0,0 +1,11 @@ +--- src/HistoryWindow.cc.orig Wed Oct 2 00:32:00 2002 ++++ src/HistoryWindow.cc Thu Apr 8 22:41:14 2004 +@@ -479,7 +479,7 @@ + { + ifstream infile(filename.c_str(), ios::in); + +- if(infile.bad()) return false; ++ if(!infile.is_open() || infile.bad()) return false; + int count = 0; + while(!infile.eof() && count < maxHistory) { + string line; |