From c33b761408b28fd1800e7c9461699c1384fa5bd1 Mon Sep 17 00:00:00 2001 From: brian Date: Tue, 20 Jul 2004 01:42:30 +0000 Subject: Report the number of bytes not written when complaining about failed writes --- usr.sbin/ppp/physical.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/ppp/physical.c b/usr.sbin/ppp/physical.c index bff1198..ec93fcc 100644 --- a/usr.sbin/ppp/physical.c +++ b/usr.sbin/ppp/physical.c @@ -425,8 +425,8 @@ physical_DescriptorWrite(struct fdescriptor *d, struct bundle *bundle, if (errno == EAGAIN) result = 1; else if (errno != ENOBUFS) { - log_Printf(LogPHASE, "%s: write (%d): %s\n", p->link.name, - p->fd, strerror(errno)); + log_Printf(LogPHASE, "%s: write (fd %d, len %d): %s\n", p->link.name, + p->fd, p->out->m_len, strerror(errno)); datalink_Down(p->dl, CLOSE_NORMAL); } } -- cgit v1.1