Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 39237 invoked from network); 13 Apr 2007 20:50:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 13 Apr 2007 20:50:17 -0000 Received: (qmail 17911 invoked by uid 500); 13 Apr 2007 20:50:23 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 17879 invoked by uid 500); 13 Apr 2007 20:50:23 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 17868 invoked by uid 99); 13 Apr 2007 20:50:22 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Apr 2007 13:50:22 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Apr 2007 13:50:16 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 1ED721A983A; Fri, 13 Apr 2007 13:49:56 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r528659 - /apr/apr/trunk/poll/unix/port.c Date: Fri, 13 Apr 2007 20:49:55 -0000 To: commits@apr.apache.org From: wrowe@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070413204956.1ED721A983A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: wrowe Date: Fri Apr 13 13:49:55 2007 New Revision: 528659 URL: http://svn.apache.org/viewvc?view=rev&rev=528659 Log: Fix nsec timeout value PR: 42093 Reported by: Alex Kiernan Modified: apr/apr/trunk/poll/unix/port.c Modified: apr/apr/trunk/poll/unix/port.c URL: http://svn.apache.org/viewvc/apr/apr/trunk/poll/unix/port.c?view=diff&rev=528659&r1=528658&r2=528659 ============================================================================== --- apr/apr/trunk/poll/unix/port.c (original) +++ apr/apr/trunk/poll/unix/port.c Fri Apr 13 13:49:55 2007 @@ -260,7 +260,7 @@ } else { tv.tv_sec = (long) apr_time_sec(timeout); - tv.tv_nsec = (long) apr_time_msec(timeout); + tv.tv_nsec = (long) apr_time_usec(timeout) * 1000; tvptr = &tv; }