From: octo Date: Mon, 29 May 2006 13:41:20 +0000 (+0000) Subject: ntpd branch: Fixed misspelled variable name in common.h. X-Git-Tag: svn-trunk~12^2~12 X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=462eca4814cf09d6f56cf5f58e554c06f52987af;p=collectd.git ntpd branch: Fixed misspelled variable name in common.h. --- diff --git a/src/common.c b/src/common.c index 138b7678..98e67044 100644 --- a/src/common.c +++ b/src/common.c @@ -161,7 +161,7 @@ ssize_t swrite (int fd, const void *buf, size_t count) ssize_t status; ptr = (const char *) buf; - nleft = buflen; + nleft = count; while (nleft > 0) {