Package: ppp Version: 2.4.4rel-2 Severity: minor Tags: patch In /etc/bash_completion.d/pon file the list of connections is obtained using "ls". If there is an alias for ls (e.g. alias ls="ls -l") the results can be incorrect.
To correct this misbehaviour just change "ls" in "\ls", thus avoiding alias expansion. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.17-2-686 Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) Versions of packages ppp depends on: ii libc6 2.3.6.ds1-4 GNU C Library: Shared libraries ii libpam-modules 0.79-3.2 Pluggable Authentication Modules f ii libpam-runtime 0.79-3.2 Runtime support for the PAM librar ii libpam0g 0.79-3.2 Pluggable Authentication Modules l ii libpcap0.8 0.9.5-1 System interface for user-level pa ii netbase 4.25 Basic TCP/IP networking system ii procps 1:3.2.7-3 /proc file system utilities ii zlib1g 1:1.2.3-13 compression library - runtime ppp recommends no packages. -- no debconf information
14c14 < conns=$(ls --color=none /etc/ppp/peers | egrep -v '(\.bak|~)$') --- > conns=$(\ls --color=none /etc/ppp/peers | egrep -v '(\.bak|~)$') 34c34 < conns=$(ls --color=none /etc/ppp/peers | egrep -v '(\.bak|~)$') --- > conns=$(\ls --color=none /etc/ppp/peers | egrep -v '(\.bak|~)$')