Switch to unified view

a/src/internfile/mh_exec.cpp b/src/internfile/mh_exec.cpp
...
...
163
    (void)txtdcode("mh_exec");
163
    (void)txtdcode("mh_exec");
164
    }
164
    }
165
165
166
    string md5, xmd5, reason;
166
    string md5, xmd5, reason;
167
    if (MD5File(m_fn, md5, &reason)) {
167
    if (MD5File(m_fn, md5, &reason)) {
168
    m_metaData["md5"] = MD5HexPrint(md5, xmd5);
168
    m_metaData[cstr_md5] = MD5HexPrint(md5, xmd5);
169
    } else {
169
    } else {
170
    LOGERR(("MimeHandlerExec: cant compute md5 for [%s]: %s\n", 
170
    LOGERR(("MimeHandlerExec: cant compute md5 for [%s]: %s\n", 
171
        m_fn.c_str(), reason.c_str()));
171
        m_fn.c_str(), reason.c_str()));
172
    }
172
    }
173
}
173
}