Incorrect argument passing from ip-up to ip-up.local
Bug #243384 reported by
Carsten Schneemann
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
ppp (Ubuntu) |
Confirmed
|
Undecided
|
Unassigned |
Bug Description
Binary package hint: ppp
The startup script /etc/ppp/ip-up optionally calls another startup script /etc/ppp/
More precisely, line 47 in version 2.4.4rel-9ubuntu2 reads:
exec /etc/ppp/
This invokes ip-up.local like
/etc/
(similarly for >6 arguments). Thus ip-up.local is called with only 1 argument. Instead, line 47 should be
exec /etc/ppp/
which invokes ip-up.local like
/etc/
A corresponding patch is attached.
To post a comment you must log in.
Of course, /etc/ppp/ip-down has exactly the same problem.
Find attached a patch fixing this, too.