gawk

[old] Sed-like interface to the Gopher protocol
Log | Files | Refs | LICENSE

commit 3e859c75d3e98a8e546ba4ae23dca8ba0156326f
parent 29329314b65b72acc8af86dd4fdae6dee2aeb78c
Author: Jacob R. Edwards <jacobouno@protonmail.com>
Date:   Tue,  5 Jan 2021 16:07:50 -0800

Make cfetch() notification easier to follow

Diffstat:
Mcommand.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/command.c b/command.c @@ -82,7 +82,7 @@ cfetch(int argc, char const **argv, int ino, char const **item) if (timid_gopher(itemtoaddr(item), path)) return NEXT; - warn(0, "'%s%s' written to '%s'", item[GI_HOST], item[GI_PATH], path); + warn(0, "%s: '%s%s' > '%s'", *argv, item[GI_HOST], item[GI_PATH], path); return PASS; }