ntpd branch: Fixed misspelled variable name in common.h.
authorocto <octo>
Mon, 29 May 2006 13:41:20 +0000 (13:41 +0000)
committerocto <octo>
Mon, 29 May 2006 13:41:20 +0000 (13:41 +0000)
src/common.c

index 138b767..98e6704 100644 (file)
@@ -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)
        {