summary refs log tree commit diff
path: root/bin
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2022-04-13 21:13:53 -0400
committerJune McEnroe <june@causal.agency>2022-04-13 21:13:53 -0400
commite52265294d05dd5d8de07b78889c9b89f27601ef (patch)
tree5a461ec8770e77be145235c9207734f7884f12aa /bin
parentUpdate "Care" (diff)
downloadsrc-e52265294d05dd5d8de07b78889c9b89f27601ef.tar.gz
src-e52265294d05dd5d8de07b78889c9b89f27601ef.zip
Swap dates so the difference is always positive
Diffstat (limited to 'bin')
-rw-r--r--bin/when.y10
1 files changed, 9 insertions, 1 deletions
diff --git a/bin/when.y b/bin/when.y
index a9f6d1ed..64859da7 100644
--- a/bin/when.y
+++ b/bin/when.y
@@ -103,6 +103,15 @@ static struct tm dateSub(struct tm date, struct tm scalar) {
 }
 
 static struct tm dateDiff(struct tm a, struct tm b) {
+	time_t atime = timegm(&a), btime = timegm(&b);
+	if (atime < btime) {
+		struct tm x = a;
+		a = b;
+		b = x;
+		time_t xtime = atime;
+		atime = btime;
+		btime = xtime;
+	}
 	struct tm diff = {
 		.tm_year = a.tm_year - b.tm_year,
 		.tm_mon = a.tm_mon - b.tm_mon,
@@ -117,7 +126,6 @@ static struct tm dateDiff(struct tm a, struct tm b) {
 		diff.tm_mday = 0;
 		while (dateAdd(b, diff).tm_mday != a.tm_mday) diff.tm_mday++;
 	}
-	time_t atime = timegm(&a), btime = timegm(&b);
 	diff.tm_yday = (atime - btime) / 24 / 60 / 60;
 	return diff;
 }