From owner-freebsd-ports Tue Oct 23 15:50:10 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4954637B406 for ; Tue, 23 Oct 2001 15:50:01 -0700 (PDT) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f9NMo1o20187; Tue, 23 Oct 2001 15:50:01 -0700 (PDT) (envelope-from gnats) Received: from mail.disney.com (mail.disney.com [204.128.192.15]) by hub.freebsd.org (Postfix) with ESMTP id 755C737B401 for ; Tue, 23 Oct 2001 15:49:29 -0700 (PDT) Received: from Hermes10.corp.disney.com (hermes10.corp.disney.com [153.7.110.102]) by mail.disney.com (Switch-2.2.0/Switch-2.2.0) with ESMTP id f9NMmLQ25059 for ; Tue, 23 Oct 2001 15:48:21 -0700 (PDT) Received: from [172.30.50.1] by hermes.corp.disney.com with ESMTP for FreeBSD-gnats-submit@freebsd.org; Tue, 23 Oct 2001 15:48:36 -0700 Received: from plio.fan.fa.disney.com (plio.fan.fa.disney.com [153.7.118.2]) by pecos.fa.disney.com (8.11.3/8.11.3) with ESMTP id f9NMo6309078 for ; Tue, 23 Oct 2001 15:50:06 -0700 (PDT) Received: from snoopy.fan.fa.disney.com (snoopy.fan.fa.disney.com [153.7.117.170]) by plio.fan.fa.disney.com (8.9.2/8.9.2) with ESMTP id PAA00536 for ; Tue, 23 Oct 2001 15:49:27 -0700 (PDT) (envelope-from Jim.Pirzyk@mailhost) Received: (from Jim.Pirzyk@localhost) by snoopy.fan.fa.disney.com (8.11.6/8.11.6) id f9NMnQB88966; Tue, 23 Oct 2001 15:49:26 -0700 (PDT) (envelope-from Jim.Pirzyk) Message-Id: <200110232249.f9NMnQB88966@snoopy.fan.fa.disney.com> Date: Tue, 23 Oct 2001 15:49:26 -0700 (PDT) From: Jim Pirzyk Reply-To: Jim Pirzyk To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/31462: rdist6 does not like accounts with '.' in the login name. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 31462 >Category: ports >Synopsis: rdist6 does not like accounts with '.' in the login name. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 23 15:50:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Jim Pirzyk >Release: FreeBSD 4.4-RELEASE i386 >Organization: >Environment: System: FreeBSD snoopy 4.4-RELEASE FreeBSD 4.4-RELEASE #2: Fri Sep 21 11:16:23 PDT 2001 root@snoopy:/auto/roy/dist/pub/FreeBSD/4.4-RELEASE/sys/compile/UP_WORKSTATION i386 Using the rdist-6.1.5 package from the ports tree. >Description: rdist6 thinks accounts with '.' are invalid. >How-To-Repeat: create a distfile with a machine target of foo.bar@host, then you will get this error message: LOCAL ERROR: Invalid user name "foo.bar" >Fix: --- docmd.c.orig Mon Nov 9 20:08:32 1998 +++ docmd.c Tue Oct 23 14:32:06 2001 @@ -611,7 +624,7 @@ c = *cp; if (c & 0200) isbad = TRUE; - if (!isalpha(c) && !isdigit(c) && c != '_' && c != '-') + if (!isalpha(c) && !isdigit(c) && c != '_' && c != '-' && c != '.' ) isbad = TRUE; } >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message