aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/fileio.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index d55b247471..da76922819 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
+2012-07-05 Paul Eggert <[email protected]>
+
+ * fileio.c (time_error_value): Check the right error number.
+ Problem reported by Troels Nielsen in
+ <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00095.html>.
+
2012-07-04 Paul Eggert <[email protected]>
* window.c (set_window_hscroll): Revert the 100000 hscroll limit.
diff --git a/src/fileio.c b/src/fileio.c
index 5905c0e551..69ec7b0539 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -3218,7 +3218,7 @@ static EMACS_TIME
time_error_value (int errnum)
{
EMACS_TIME t;
- int ns = (errno == ENOENT || errno == EACCES || errno == ENOTDIR
+ int ns = (errnum == ENOENT || errnum == EACCES || errnum == ENOTDIR
? NONEXISTENT_MODTIME_NSECS
: UNKNOWN_MODTIME_NSECS);
EMACS_SET_SECS_NSECS (t, 0, ns);