Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 28145 invoked from network); 18 Jan 2005 17:44:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 18 Jan 2005 17:44:53 -0000 Received: (qmail 21694 invoked by uid 500); 18 Jan 2005 17:44:20 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 21610 invoked by uid 500); 18 Jan 2005 17:44:20 -0000 Mailing-List: contact commits-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 commits@apr.apache.org Received: (qmail 21583 invoked by uid 99); 18 Jan 2005 17:44:19 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Tue, 18 Jan 2005 09:44:19 -0800 Received: (qmail 27772 invoked by uid 65534); 18 Jan 2005 17:44:18 -0000 Date: 18 Jan 2005 17:44:18 -0000 Message-ID: <20050118174418.27768.qmail@minotaur.apache.org> From: bnicholes@apache.org To: commits@apr.apache.org Subject: svn commit: r125520 - /apr/apr/trunk/threadproc/netware/proc.c MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Author: bnicholes Date: Tue Jan 18 09:44:15 2005 New Revision: 125520 URL: http://svn.apache.org/viewcvs?view=rev&rev=125520 Log: NetWare implementation of apr_procattr_user_set() and apr_procattr_group_set() Modified: apr/apr/trunk/threadproc/netware/proc.c Modified: apr/apr/trunk/threadproc/netware/proc.c Url: http://svn.apache.org/viewcvs/apr/apr/trunk/threadproc/netware/proc.c?view=diff&rev=125520&p1=apr/apr/trunk/threadproc/netware/proc.c&r1=125519&p2=apr/apr/trunk/threadproc/netware/proc.c&r2=125520 ============================================================================== --- apr/apr/trunk/threadproc/netware/proc.c (original) +++ apr/apr/trunk/threadproc/netware/proc.c Tue Jan 18 09:44:15 2005 @@ -439,11 +439,13 @@ const char *username, const char *password) { - return APR_ENOTIMPL; + /* Always return SUCCESS because NetWare threads don't run as a user */ + return APR_SUCCESS; } APR_DECLARE(apr_status_t) apr_procattr_group_set(apr_procattr_t *attr, const char *groupname) { - return APR_ENOTIMPL; + /* Always return SUCCESS because NetWare threads don't run within a group */ + return APR_SUCCESS; }