* lib/strptime.c (__strptime_internal): Fix ported code.
+2016-11-14 Pádraig Brady <P@draigBrady.com>
+
+ strptime: fix compile error in recent change
+ * lib/strptime.c (__strptime_internal): Fix ported code.
+
2016-11-11 Bruno Haible <bruno@clisp.org>
gnulib-tool: Support for the dual "LGPLv3+ or GPLv2" license.
get_number (1, 4, 1);
tm->tm_mon = (val - 1) * 3;
tm->tm_mday = 1;
- s.have_mon = 1;
- s.have_mday = 1;
- s.want_xday = 1;
+ have_mon = 1;
+ have_mday = 1;
+ want_xday = 1;
break;
case 'r':
#ifdef _NL_CURRENT
get_alt_number (1, 4, 1);
tm->tm_mon = (val - 1) * 3;
tm->tm_mday = 1;
- s.have_mon = 1;
- s.have_mday = 1;
- s.want_xday = 1;
+ have_mon = 1;
+ have_mday = 1;
+ want_xday = 1;
break;
case 'S':
/* Match seconds using alternate numeric symbols. */