~ubuntu-branches/ubuntu/wily/recoll/wily

« back to all changes in this revision

Viewing changes to internfile/mh_mail.cpp

  • Committer: Package Import Robot
  • Author(s): Kartik Mistry
  • Date: 2015-08-03 14:16:32 UTC
  • mfrom: (33.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20150803141632-w5a1cr8ub2rkyvfe
Tags: 1.21.0-1
* New upstream release.
* debian/control:
  + Build-depend on python3-dev, python-dev, not python3-all-dev and
    python-all-dev. Thanks to Steve Langasek for patch. (Closes: #793636)
  + Added Build-depends on bison.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
#include "mh_html.h"
37
37
#include "rclconfig.h"
38
38
#include "mimetype.h"
39
 
#include "md5.h"
 
39
#include "md5ut.h"
40
40
 
41
41
// binc imap mime definitions
42
42
#include "mime.h"
111
111
                fn.c_str(), errno));
112
112
        return false;
113
113
    }
 
114
#if defined O_NOATIME && O_NOATIME != 0
 
115
    if (fcntl(m_fd, F_SETFL, O_NOATIME) < 0) {
 
116
        // perror("fcntl");
 
117
    }
 
118
#endif
114
119
    delete m_bincdoc;
115
120
    m_bincdoc = new Binc::MimeDocument;
116
121
    m_bincdoc->parseFull(m_fd);