Opened 13 years ago
Closed 13 years ago
#520 closed defect (fixed)
Error in kill_anything_like_this () function
Reported by: | victor gattegno | Owned by: | victor gattegno |
---|---|---|---|
Priority: | normal | Milestone: | 3.0.0 |
Component: | mondo | Version: | 2.2.9.7 |
Severity: | normal | Keywords: | |
Cc: |
Description
In newt-specific.c there is an error, in kill_anything_like_this() function.
mr_asprintf(&tmp,"ps %s | grep \" %s \" | awk '{print %s;}' | grep -v \"grep\"", ps_options, str , ps_proc_id);
should be :
mr_asprintf(&tmp,"ps %s | grep \" %s \" | grep -v \"grep\" | awk '{print %s;}'", ps_options, str , ps_proc_id);
Note:
See TracTickets
for help on using tickets.
Ticket solved ; I modified the file (revision [2901]).