about summary refs log tree commit diff
path: root/Src/Modules
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2010-02-26 17:07:18 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2010-02-26 17:07:18 +0000
commit31123a118472ee4e4afbfae5dff904bb40113e65 (patch)
treea5a4b3bafca25919b3f64faf45f6c9b6dbae277c /Src/Modules
parentd5a0f7623c2b1a5c83a9602cb2f881317d2771e2 (diff)
downloadzsh-31123a118472ee4e4afbfae5dff904bb40113e65.tar.gz
zsh-31123a118472ee4e4afbfae5dff904bb40113e65.tar.xz
zsh-31123a118472ee4e4afbfae5dff904bb40113e65.zip
users/14902: another go at strftime
Diffstat (limited to 'Src/Modules')
-rw-r--r--Src/Modules/datetime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Modules/datetime.c b/Src/Modules/datetime.c
index 2f69ecae6..0dc42fda8 100644
--- a/Src/Modules/datetime.c
+++ b/Src/Modules/datetime.c
@@ -113,7 +113,7 @@ bin_strftime(char *nam, char **argv, Options ops, UNUSED(int func))
 
     errno = 0;
     secs = (time_t)strtoul(argv[1], &endptr, 10);
-    if (secs == (time_t)ULONG_MAX && errno != 0) {
+    if (errno != 0) {
 	zwarnnam(nam, "%s: %e", argv[1], errno);
 	return 1;
     } else if (*endptr != '\0') {