Changeset 500 for wu-ftpd

Show
Ignore:
Timestamp:
02/03/10 12:28:58 (6 months ago)
Author:
chrisb
Message:

Fixed regexps in addftpuser for architectures where the ELF dynamic linker
is called ld.so. (closes: #550807)

Location:
wu-ftpd/trunk/debian
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • wu-ftpd/trunk/debian/addftpuser

    r166 r500  
    267267chmod 0111, <$home/bin/*>; 
    268268chmod 0555, <$home/lib/*>; 
    269 chmod 0555, <$home/lib/ld-linux*>; 
    270269chmod 0666, "$home/dev/null"; 
    271270 
     
    370369                        if (/\s=>\s/) { 
    371370                                ($lib) = /.*=>\s(.*?)\s/; 
    372                         } elsif (/ld-linux/) { 
     371                        } elsif (/(ld\.so|ld-linux)/) { 
    373372                                ($lib) = /\s*(\S+)\s*\(0x/; 
    374373                        } else { 
     
    434433                        @errors = (); 
    435434                        foreach (getlibs(<$ftphome/bin/*>)) { 
    436                                 /ld-linux/ and push @dynlinker, "$ftphome$_"; 
     435                                /(ld\.so|ld-linux)/ and push @dynlinker, "$ftphome$_"; 
    437436                                -f "$ftphome$_" or push @errors, "$0: Warning: $ftphome$_ not found.\n"; 
    438437                        } 
  • wu-ftpd/trunk/debian/changelog

    r499 r500  
    33  * Fix path_to_device in src/extensions.c to cope with an empty fstab 
    44    (closes: #568235) 
    5  
    6  -- Chris Butler <chrisb@debian.org>  Wed, 03 Feb 2010 12:15:50 +0000 
     5  * Fixed regexps in addftpuser for architectures where the ELF dynamic linker 
     6    is called ld.so. (closes: #550807) 
     7 
     8 -- Chris Butler <chrisb@debian.org>  Wed, 03 Feb 2010 12:21:48 +0000 
    79 
    810wu-ftpd (2.6.2-31) unstable; urgency=low