Switch to unified view

a/src/internfile/mh_exec.cpp b/src/internfile/mh_exec.cpp
...
...
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 list: delete cmd name and add the file name
90
    list<string>::iterator it = params.begin();
90
    list<string>::iterator it = params.begin();
91
    list<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
96
    // Execute command, store the output
96
    // Execute command, store the output