summaryrefslogtreecommitdiffstats
path: root/sys-utils
diff options
context:
space:
mode:
authorKarel Zak2013-03-26 11:45:45 +0100
committerKarel Zak2013-03-26 11:45:45 +0100
commit7528fae9e9baa8cdc71696faf651ab076856aa30 (patch)
treeca835ba98f7e20335b9457188b73cdbe4e88090a /sys-utils
parentrtcwake: add --adjfile command line option (diff)
downloadkernel-qcow2-util-linux-7528fae9e9baa8cdc71696faf651ab076856aa30.tar.gz
kernel-qcow2-util-linux-7528fae9e9baa8cdc71696faf651ab076856aa30.tar.xz
kernel-qcow2-util-linux-7528fae9e9baa8cdc71696faf651ab076856aa30.zip
include/pathnames: rename _PATH_ADJPATH to _PATH_ADJTIME
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'sys-utils')
-rw-r--r--sys-utils/hwclock.c4
-rw-r--r--sys-utils/rtcwake.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys-utils/hwclock.c b/sys-utils/hwclock.c
index b7f569207..5dd7919ec 100644
--- a/sys-utils/hwclock.c
+++ b/sys-utils/hwclock.c
@@ -1476,7 +1476,7 @@ static void usage(const char *fmt, ...)
" --noadjfile do not access %s; this requires the use of\n"
" either --utc or --localtime\n"
" --adjfile <file> specifies the path to the adjust file;\n"
- " the default is %s\n"), _PATH_ADJPATH, _PATH_ADJPATH);
+ " the default is %s\n"), _PATH_ADJTIME, _PATH_ADJTIME);
fputs(_(" --test do not update anything, just show what would happen\n"
" -D, --debug debugging mode\n" "\n"), usageto);
#ifdef __alpha__
@@ -1746,7 +1746,7 @@ int main(int argc, char **argv)
}
if (!adj_file_name)
- adj_file_name = _PATH_ADJPATH;
+ adj_file_name = _PATH_ADJTIME;
if (noadjfile && !utc && !local_opt) {
warnx(_("With --noadjfile, you must specify "
diff --git a/sys-utils/rtcwake.c b/sys-utils/rtcwake.c
index f233f506e..d7f193b05 100644
--- a/sys-utils/rtcwake.c
+++ b/sys-utils/rtcwake.c
@@ -60,7 +60,7 @@ enum ClockMode {
CM_LOCAL
};
-static char *adjfile = _PATH_ADJPATH;
+static char *adjfile = _PATH_ADJTIME;
static unsigned verbose;
static unsigned dryrun;
enum ClockMode clock_mode = CM_AUTO;
@@ -74,7 +74,7 @@ static void __attribute__((__noreturn__)) usage(FILE *out)
fputs(USAGE_OPTIONS, out);
fprintf(out,
_(" -A, --adjfile <file> specifies the path to the adjust file\n"
- " the default is %s\n"), _PATH_ADJPATH);
+ " the default is %s\n"), _PATH_ADJTIME);
fputs(_(" -d, --device <device> select rtc device (rtc0|rtc1|...)\n"
" -n, --dry-run does everything, but suspend\n"
" -l, --local RTC uses local timezone\n"