summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@suse.de>2010-05-03 22:03:48 +0200
committerAndreas Gruenbacher <agruen@suse.de>2010-05-03 22:04:13 +0200
commit8462be2ed0b3fd0079854fdfb1664a16ec6d3403 (patch)
tree28d13bd2b73b7d2dd9e6c014b4302ddabc1bc364
parenta93dea1dce7a626cd3d6e4663988efd0b1be6864 (diff)
downloadpatch-8462be2ed0b3fd0079854fdfb1664a16ec6d3403.tar.gz
Minor cosmetic changes
-rw-r--r--ChangeLog4
-rw-r--r--src/util.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 740ff79..8965795 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,11 @@
-2009-05-02 Andreas Gruenbacher <agruen@suse.de>
+2009-05-03 Andreas Gruenbacher <agruen@suse.de>
* src/pch.c (intuit_diff_type): Fix a bug where the reversed-patch
check would wrongly pick the last name instead of the best name.
* src/create-delete: Add test cases for that.
+2009-05-02 Andreas Gruenbacher <agruen@suse.de>
+
* src/pch.c (fetchmode): Document that the "diff --git" format does
not store file permissions of symlinks.
* src/util.c (set_file_attributes): Since we don't have symlink file
diff --git a/src/util.c b/src/util.c
index cf58983..33f8d63 100644
--- a/src/util.c
+++ b/src/util.c
@@ -175,7 +175,7 @@ set_file_attributes (char const *to, enum file_attributes attr,
mode = st->st_mode;
#if 0 && defined HAVE_LCHMOD
/* The "diff --git" format does not store the file permissions of
- symlinks, so don't try to set symlink file permissions even on
+ symlinks, so don't try to set symlink file permissions even on
systems where we could. */
if (lchmod (to, mode))
#else