summaryrefslogtreecommitdiff
path: root/sbin/dump/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'sbin/dump/main.c')
-rw-r--r--sbin/dump/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/dump/main.c b/sbin/dump/main.c
index 9cc8a7e14c11..392fa7022e96 100644
--- a/sbin/dump/main.c
+++ b/sbin/dump/main.c
@@ -103,7 +103,7 @@ main(argc, argv)
char *tmsg;
time_t t;
- spcl.c_date = time_to_time32(time(NULL));
+ spcl.c_date = _time_to_time32(time(NULL));
tsize = 0; /* Default later, based on 'c' option for cart tapes */
if ((tape = getenv("TAPE")) == NULL)
@@ -312,14 +312,14 @@ main(argc, argv)
if (spcl.c_date == 0) {
tmsg = "the epoch\n";
} else {
- time_t t = time32_to_time(spcl.c_date);
+ time_t t = _time32_to_time(spcl.c_date);
tmsg = ctime(&t);
}
msg("Date of this level %c dump: %s", level, tmsg);
if (spcl.c_ddate == 0) {
tmsg = "the epoch\n";
} else {
- time_t t = time32_to_time(spcl.c_ddate);
+ time_t t = _time32_to_time(spcl.c_ddate);
tmsg = ctime(&t);
}
msg("Date of last level %c dump: %s", lastlevel, tmsg);