summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--usr.sbin/tzsetup/tzsetup.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/tzsetup/tzsetup.c b/usr.sbin/tzsetup/tzsetup.c
index 66a34c4..e00e3bd 100644
--- a/usr.sbin/tzsetup/tzsetup.c
+++ b/usr.sbin/tzsetup/tzsetup.c
@@ -709,9 +709,11 @@ main(int argc, char **argv)
fd = open(_PATH_WALL_CMOS_CLOCK,
O_WRONLY | O_CREAT | O_TRUNC,
S_IRUSR | S_IRGRP | S_IROTH);
- if (fd < 0)
+ if (fd < 0) {
+ end_dialog();
err(1, "create %s",
_PATH_WALL_CMOS_CLOCK);
+ }
close(fd);
}
}
OpenPOWER on IntegriCloud