about summary refs log tree commit diff
path: root/blaze822.c
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2016-07-18 18:11:41 +0200
committerChristian Neukirchen <chneukirchen@gmail.com>2016-07-18 18:11:41 +0200
commitc12aa237779f30131c75c64b9ffcbf0e053dfb4d (patch)
tree9340e0fc78ac00752d61eccd5c53ec851bf4bbda /blaze822.c
parent22f456a2a02d2b8b4b6fb4da9927683bc5d4a29f (diff)
downloadmblaze-c12aa237779f30131c75c64b9ffcbf0e053dfb4d.tar.gz
mblaze-c12aa237779f30131c75c64b9ffcbf0e053dfb4d.tar.xz
mblaze-c12aa237779f30131c75c64b9ffcbf0e053dfb4d.zip
blaze822: fix months. duh
Diffstat (limited to 'blaze822.c')
-rw-r--r--blaze822.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/blaze822.c b/blaze822.c
index 70ceb96..92c0464 100644
--- a/blaze822.c
+++ b/blaze822.c
@@ -81,8 +81,8 @@ blaze822_date(char *s) {
 	else if (i3("mar")) tm.tm_mon = 2;
 	else if (i3("apr")) tm.tm_mon = 3;
 	else if (i3("may")) tm.tm_mon = 4;
-	else if (i3("jul")) tm.tm_mon = 5;
-	else if (i3("jun")) tm.tm_mon = 6;
+	else if (i3("jun")) tm.tm_mon = 5;
+	else if (i3("jul")) tm.tm_mon = 6;
 	else if (i3("aug")) tm.tm_mon = 7;
 	else if (i3("sep")) tm.tm_mon = 8;
 	else if (i3("oct")) tm.tm_mon = 9;