From owner-freebsd-bugs Wed Apr 11 15:20: 9 2001 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9258937B422 for ; Wed, 11 Apr 2001 15:20:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f3BMK6F60033; Wed, 11 Apr 2001 15:20:06 -0700 (PDT) (envelope-from gnats) Date: Wed, 11 Apr 2001 15:20:06 -0700 (PDT) Message-Id: <200104112220.f3BMK6F60033@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Linh Pham Subject: Re: bin/25961: rmuser is not case sensitive Reply-To: Linh Pham Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR bin/25961; it has been noted by GNATS. From: Linh Pham To: , Cc: Subject: Re: bin/25961: rmuser is not case sensitive Date: Wed, 11 Apr 2001 15:12:26 -0700 (PDT) I just wanted to clarify my post to -questions: There is a line in the rmuser script that has: if (not /^\Q$login_name:/io) { which should be if (not /^\Q$login_name:/o) { since /io does the search in a case-insensitive manner and scans through the variable only once. /o would make the search case-sensitive... as it should. Sorry if this wasn't really clear in my original post. -- Linh Pham [lplist@closedsrc.org] // 404b - Brain not found To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message