diff options
author | Nick Mathewson <nickm@torproject.org> | 2010-07-09 21:52:20 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2010-07-09 22:05:38 -0400 |
commit | 14bc4dcc229fe45af48986820020779b440149cb (patch) | |
tree | 513ee7d878975353240bf41b4211b4ad2456133d /changes | |
parent | c3febf8660518f77ec890afe339c353dfcb61a87 (diff) | |
download | tor-14bc4dcc229fe45af48986820020779b440149cb.tar.gz tor-14bc4dcc229fe45af48986820020779b440149cb.zip |
Rename log.h to torlog.h
This should make us conflict less with system files named "log.h".
Yes, we shouldn't have been conflicting with those anyway, but some
people's compilers act very oddly.
The actual change was done with one "git mv", by editing
Makefile.am, and running
find . -name '*.[ch]' | xargs perl -i -pe 'if (/^#include.*\Wlog.h/) {s/log.h/torlog.h/; }'
Diffstat (limited to 'changes')
-rw-r--r-- | changes/RemoveLogHeader | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/changes/RemoveLogHeader b/changes/RemoveLogHeader new file mode 100644 index 0000000000..d93c9fffc0 --- /dev/null +++ b/changes/RemoveLogHeader @@ -0,0 +1,4 @@ + o Code simplifications and refactoring: + - Rename the "log.h" header to "torlog.h" so as to conflict with fewer + system headers. + |