summaryrefslogtreecommitdiff
path: root/net/pxe/files/patch-logfile.cc
diff options
context:
space:
mode:
authorAnders Nordby <anders@FreeBSD.org>2003-04-09 21:57:13 +0000
committerAnders Nordby <anders@FreeBSD.org>2003-04-09 21:57:13 +0000
commit78ec34070818dbf892d661e47da1811ba7204159 (patch)
tree6b8efd4fdc274d4aee746db5a434aef453be7a49 /net/pxe/files/patch-logfile.cc
parentUpdate to 0.7.8. (diff)
Update to 1.4.
Notes
Notes: svn path=/head/; revision=78684
Diffstat (limited to '')
-rw-r--r--net/pxe/files/patch-logfile.cc17
1 files changed, 0 insertions, 17 deletions
diff --git a/net/pxe/files/patch-logfile.cc b/net/pxe/files/patch-logfile.cc
deleted file mode 100644
index 5eed667bbc70..000000000000
--- a/net/pxe/files/patch-logfile.cc
+++ /dev/null
@@ -1,17 +0,0 @@
---- logfile.cc.orig Wed Oct 2 22:41:50 2002
-+++ logfile.cc Wed Oct 2 22:42:09 2002
-@@ -58,12 +58,13 @@
- {
- /* open the file */
- umask(077);
-- logfile = new std::fstream(filename, std::ios::out|std::ios::app, 0644);
-+ logfile = new std::fstream(filename, std::ios::out|std::ios::app);
- if(logfile == NULL)
- {
- std::cerr << "Error: LogFile::Open:open(): " << strerror(errno) <<"\n";
- exit(-1);
- }
-+ chmod(filename, 0644);
- }
-
-