diff options
| author | B. Watson <urchlay@slackware.uk> | 2025-12-11 00:13:12 -0500 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2025-12-11 00:13:12 -0500 |
| commit | d9dec8222e1d23323efe8be7a2045b6d1ecf4d4c (patch) | |
| tree | 9ae2321faebc6a2bf09405913810aaae1d8ba7d5 | |
| parent | 67757c20c76156256b65dd8cdf6f30a29dc21937 (diff) | |
| download | alftools-d9dec8222e1d23323efe8be7a2045b6d1ecf4d4c.tar.gz | |
unalf: use "zero" rather than "null" in timestamp warning.
| -rw-r--r-- | src/extract.c | 2 | ||||
| -rw-r--r-- | src/unalf.1 | 4 | ||||
| -rw-r--r-- | src/unalf.rst | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/extract.c b/src/extract.c index 6f24c0d..9b864c3 100644 --- a/src/extract.c +++ b/src/extract.c @@ -52,7 +52,7 @@ void set_datetime() { /* don't set the date/time at all, if it's zero */ if(!t) { - fprintf(stderr, "%s: warning: date/time for %s is null, using current date/time\n", self, out_filename); + fprintf(stderr, "%s: warning: date/time for %s is zero, using current date/time\n", self, out_filename); return; } diff --git a/src/unalf.1 b/src/unalf.1 index f03a2a6..bb69d89 100644 --- a/src/unalf.1 +++ b/src/unalf.1 @@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]] .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]] .in \\n[rst2man-indent\\n[rst2man-indent-level]]u .. -.TH "UNALF" 1 "2025-12-10" "0.4.0" "Urchlay's Atari 8-bit Tools" +.TH "UNALF" 1 "2025-12-11" "0.4.0" "Urchlay's Atari 8-bit Tools" .SH NAME unalf \- extract Atari 8-bit ALF archives .\" RST source for unalf(1) man page. Convert with: @@ -402,7 +402,7 @@ be a pathological case. Most likely, you\(aqre trying to extract multiple \fIALF\fP files with one command, which doesn\(aqt work. Use one \fBunalf\fP command per file. .TP -.B \fBdate/time for <file> is null, using current date/time\fP +.B \fBdate/time for <file> is zero, using current date/time\fP The date stored in the \fIALF\fP header for this file is all zeroes, which is an invalid date. \fBunalf \-v\fP shows this as \fI<none>\fP\&. The date on the extracted file can\(aqt be set, so it\(aqll have the current diff --git a/src/unalf.rst b/src/unalf.rst index 3652d21..54a2f3c 100644 --- a/src/unalf.rst +++ b/src/unalf.rst @@ -348,7 +348,7 @@ Warnings *ALF* files with one command, which doesn't work. Use one **unalf** command per file. -**date/time for <file> is null, using current date/time** +**date/time for <file> is zero, using current date/time** The date stored in the *ALF* header for this file is all zeroes, which is an invalid date. **unalf -v** shows this as *<none>*. The date on the extracted file can't be set, so it'll have the current |
