Fix support for chrooted installs.

Approved by:	imp (mentor)
This commit is contained in:
Norikatsu Shigemura 2010-07-19 16:38:45 +00:00
parent dddd00f6a4
commit 33ac3bc5a2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=210243

View File

@ -821,16 +821,16 @@ main(int argc, char **argv)
"or you don't know, please choose NO here!");
if (!DIALOG_UTC(title, prompt, 7, 72)) {
if (reallydoit)
unlink(_PATH_WALL_CMOS_CLOCK);
unlink(path_wall_cmos_clock);
} else {
if (reallydoit) {
fd = open(_PATH_WALL_CMOS_CLOCK,
fd = open(path_wall_cmos_clock,
O_WRONLY | O_CREAT | O_TRUNC,
S_IRUSR | S_IRGRP | S_IROTH);
if (fd < 0) {
end_dialog();
err(1, "create %s",
_PATH_WALL_CMOS_CLOCK);
path_wall_cmos_clock);
}
close(fd);
}