diff options
Diffstat (limited to '')
-rw-r--r-- | export.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/export.c b/export.c index d195104..ef1d526 100644 --- a/export.c +++ b/export.c @@ -106,6 +106,7 @@ static void exportMbox( unlink(dest); error = link(path, dest); if (error) err(EX_CANTCREAT, "%s", dest); + if (!quiet) printf("%s\n", dest); free(dest); free(path); @@ -212,6 +213,7 @@ static int exportHTMLAttachment( || decodeToFile(attachment, part, dataCheck(body, String).string) || fclose(attachment); if (error) err(EX_IOERR, "%s", path); + if (!quiet) printf("%s\n", path); free(path); error = htmlAttachment(file, part, vars); |