git: 9front

Download patch

ref: 631100ab58f21151037ffa28ed0fefef75e312e1
parent: ff7cb216f0d02eb42719405fe9e2c8383d54dd49
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Mon Aug 3 11:52:03 EDT 2015

webcookies: fix typo

--- a/sys/src/cmd/webcookies.c
+++ b/sys/src/cmd/webcookies.c
@@ -724,7 +724,7 @@
 
 	tm.hour = strtol(s, 0, 10);
 	tm.min = strtol(s+3, 0, 10);
-	tm.sec = strtol(s+6, 0 10);
+	tm.sec = strtol(s+6, 0, 10);
 	if(tm.hour >= 24 || tm.min >= 60 || tm.sec >= 60){
 		if(debug)
 			fprint(2, "invalid time (%s)\n", os);
--