Switch to unified view

a/src/internfile/mh_exec.cpp b/src/internfile/mh_exec.cpp
...
...
84
    m_config->getConfParam("filtermaxseconds", &filtermaxseconds);
84
    m_config->getConfParam("filtermaxseconds", &filtermaxseconds);
85
85
86
    // Command name
86
    // Command name
87
    string cmd = params.front();
87
    string cmd = params.front();
88
    
88
    
89
    // Build parameter list: delete cmd name and add the file name
89
    // Build parameter vector: delete cmd name and add the file name
90
    list<string>::iterator it = params.begin();
90
    vector<string>::iterator it = params.begin();
91
    vector<string>myparams(++it, params.end());
91
    vector<string>myparams(++it, params.end());
92
    myparams.push_back(m_fn);
92
    myparams.push_back(m_fn);
93
    if (!m_ipath.empty())
93
    if (!m_ipath.empty())
94
    myparams.push_back(m_ipath);
94
    myparams.push_back(m_ipath);
95
95