Date: Wed, 11 Apr 2001 15:20:06 -0700 (PDT) From: Linh Pham <lplist@closedsrc.org> To: freebsd-bugs@FreeBSD.org Subject: Re: bin/25961: rmuser is not case sensitive Message-ID: <200104112220.f3BMK6F60033@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR bin/25961; it has been noted by GNATS.
From: Linh Pham <lplist@closedsrc.org>
To: <freebsd-gnats-submit@freebsd.org>, <dan@freebsddiary.org>
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200104112220.f3BMK6F60033>
