From: mdw Date: Wed, 22 Dec 1999 15:43:47 +0000 (+0000) Subject: Fix log messages. X-Git-Tag: 1.2.2~3 X-Git-Url: https://git.distorted.org.uk/~mdw/fwd/commitdiff_plain/59571fdf184f7f06721ebee2a79d90da083bbd3f Fix log messages. --- diff --git a/file.c b/file.c index 005080c..b0a79dc 100644 --- a/file.c +++ b/file.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: file.c,v 1.2 1999/10/22 22:47:13 mdw Exp $ + * $Id: file.c,v 1.3 1999/12/22 15:43:47 mdw Exp $ * * File source and target * @@ -29,6 +29,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: file.c,v $ + * Revision 1.3 1999/12/22 15:43:47 mdw + * Fix log messages. + * * Revision 1.2 1999/10/22 22:47:13 mdw * New (empty) endpoint method required. * @@ -438,7 +441,7 @@ static endpt *file_endpt(fdata *f, const char *desc) if (fd != -1) { if (fattr_apply(f->out.u.name, &f->fa)) { - fw_log(-1, "[%s] couldn't apply file attributes: %s", + fw_log(-1, "[%s] couldn't apply file attributes to `%s': %s", desc, f->out.u.name, strerror(errno)); } } else if ((fd = open(f->out.u.name, m & ~O_CREAT)) < 0) {