Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 5015 invoked by uid 500); 3 Jul 2001 15:01:27 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 4835 invoked by uid 1343); 3 Jul 2001 15:00:46 -0000 Date: 3 Jul 2001 15:00:46 -0000 Message-ID: <20010703150046.4834.qmail@apache.org> From: striker@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/memory/unix apr_sms.c striker 01/07/03 08:00:45 Modified: memory/unix apr_sms.c Log: Noticed too late that I wasn't setting the return value in apr_sms_thread_register Revision Changes Path 1.38 +1 -1 apr/memory/unix/apr_sms.c Index: apr_sms.c =================================================================== RCS file: /home/cvs/apr/memory/unix/apr_sms.c,v retrieving revision 1.37 retrieving revision 1.38 diff -u -r1.37 -r1.38 --- apr_sms.c 2001/07/03 13:58:39 1.37 +++ apr_sms.c 2001/07/03 15:00:36 1.38 @@ -866,7 +866,7 @@ */ rv = APR_ENOTIMPL; if (sms->thread_register_fn) - sms->thread_register_fn(sms, thread); + rv = sms->thread_register_fn(sms, thread); apr_lock_release(sms->sms_lock);