On Wed, Dec 17, 2003 at 10:00:55AM +0100, Michael Bell wrote:
[skiped]
$prop->{user} = $>;
}else{ - if( $prop->{user} =~ /^(\w+)$/ ){ + if( $prop->{user} =~ /^(\w[-\w]+)$/ ){ $prop->{user} = eval{ get_uid( $1 ) }; $self->fatal( $@ ) if $@; }else{
The regex is wrong. \w[-\w]+ must be \w[-\w]* and \w( \w*)* must be \w[-\w]*( \w[-\w]*)*.
I reported the issues to Debian's and CPAN's BTS. A patched version was committed to OpenCA's CVS. I found a problem in the XML logging module too and if this is fixed then I create the next snapshot.
May we have this snapshot on http://www.openca.org/openca/download-releases.shtml
I cannot access cvs.sourceforge.net at the moment, Connection timed out
I start to copying a snapshot to
ftp://ftp.openca.org/pub/openca/developers/bell/snapshots
Michael -- ------------------------------------------------------------------- Michael Bell Email: [EMAIL PROTECTED] ZE Computer- und Medienservice Tel.: +49 (0)30-2093 2482 (Computing Centre) Fax: +49 (0)30-2093 2704 Humboldt-University of Berlin Unter den Linden 6 10099 Berlin Email (private): [EMAIL PROTECTED] Germany http://www.openca.org
------------------------------------------------------- This SF.net email is sponsored by: IBM Linux Tutorials. Become an expert in LINUX or just sharpen your skills. Sign up for IBM's Free Linux Tutorials. Learn everything from the bash shell to sys admin. Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click _______________________________________________ Openca-Users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/openca-users
