Switch to side-by-side view
--- a/src/utils/execmd.cpp +++ b/src/utils/execmd.cpp @@ -98,9 +98,9 @@ if (pp == 0) return false; - list<string> pels; + vector<string> pels; stringToTokens(pp, pels, ":"); - for (list<string>::iterator it = pels.begin(); it != pels.end(); it++) { + for (vector<string>::iterator it = pels.begin(); it != pels.end(); it++) { if (it->empty()) *it = "."; string candidate = (it->empty() ? string(".") : *it) + "/" + cmd;