[openssl.org #1339] mkdef.pl loops

2014-06-30 Thread Rich Salz via RT
Hey Peter, is that Perl or line noise? :)

Really old release, assume we fixed the problem, please open a new ticket if
still broken.

__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   majord...@openssl.org


[openssl.org #1339] mkdef.pl loops

2006-06-02 Thread Peter Sylvester via RT

In the 0.9.8b version

mkdef.pl loops in th following while.

# Reduce argument lists to empty ()
# fold round brackets recursively: (t(*v)(t),t) - (t{}{},t) 
- {}

while(/\(.*\)/s) {
s/\([^\(\)]+\)/\{\}/gs;
s/\(\s*\*\s*(\w+)\s*\{\}\s*\)/$1/gs;#(*f{}) - f
}

shouldn't it be replaced by

# Reduce argument lists to empty ()
# fold round brackets recursively: (t(*v)(t),t) - (t{}{},t) 
- {}

while(/\(.*\)/s) {
s/\([^\(\)]*\)/\{\}/gs;
s/\(\s*\*\s*(\w+)\s*\{\}\s*\)/$1/gs;#(*f{}) - f
}

-- 
To verify the signature, see http://edelpki.edelweb.fr/ 
Cela vous permet de charger le certificat de l'autorité; 
die Liste mit zurückgerufenen Zertifikaten finden Sie da auch. 

__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   [EMAIL PROTECTED]