summaryrefslogtreecommitdiff
path: root/plugins/sudoers/regress/parser/check_gentime.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/sudoers/regress/parser/check_gentime.c')
-rw-r--r--plugins/sudoers/regress/parser/check_gentime.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/sudoers/regress/parser/check_gentime.c b/plugins/sudoers/regress/parser/check_gentime.c
index 2aed93dcb..a203bc67c 100644
--- a/plugins/sudoers/regress/parser/check_gentime.c
+++ b/plugins/sudoers/regress/parser/check_gentime.c
@@ -33,7 +33,7 @@
sudo_dso_public int main(int argc, char *argv[]);
const struct gentime_test {
- char *gentime;
+ const char *gentime;
time_t unixtime;
} tests[] = {
{ "199412161032ZZ", -1 },
@@ -65,7 +65,7 @@ main(int argc, char *argv[])
initprogname(argc > 0 ? argv[0] : "check_gentime");
/* Do local time tests in Eastern Standard Time. */
- putenv("TZ=EST5EST5");
+ putenv((char *)"TZ=EST5EST5");
tzset();
for (i = 0; i < ntests; i++) {