View | Details | Raw Unified | Return to bug 114918
Collapse All | Expand All

(-)./src/cachefile.cc~ (-1 / +1 lines)
Lines 131-137 Link Here
131
//________________________________________
131
//________________________________________
132
132
133
Status CacheFile::findName(const byte*& resultData, size_t& resultSize,
133
Status CacheFile::findName(const byte*& resultData, size_t& resultSize,
134
    const string& fileName, long long int& resultFileSize,
134
    const string& fileName, off_t& resultFileSize,
135
    time_t& resultMtime) {
135
    time_t& resultMtime) {
136
  DBT key; memset(&key, 0, sizeof(DBT));
136
  DBT key; memset(&key, 0, sizeof(DBT));
137
  key.data = const_cast<char*>(fileName.c_str());
137
  key.data = const_cast<char*>(fileName.c_str());
(-)./src/cachefile.hh~ (-1 / +1 lines)
Lines 94-100 Link Here
94
      only valid until the next database operation. */
94
      only valid until the next database operation. */
95
  Status findName(const byte*& resultData, size_t& resultSize,
95
  Status findName(const byte*& resultData, size_t& resultSize,
96
                  const string& fileName,
96
                  const string& fileName,
97
                  long long int& resultFileSize, time_t& resultMtime);
97
                  off_t& resultFileSize, time_t& resultMtime);
98
98
99
  /** Insert/overwrite entry for the given file (name must be
99
  /** Insert/overwrite entry for the given file (name must be
100
      absolute, file must have the supplied mtime and size). The data
100
      absolute, file must have the supplied mtime and size). The data
(-)./Makefile.in~ (-1 / +1 lines)
Lines 15-21 Link Here
15
15
16
PACKAGE =	jigdo
16
PACKAGE =	jigdo
17
INSTALL =	@INSTALL@
17
INSTALL =	@INSTALL@
18
INSTALL_EXE =	@INSTALL@ -s
18
INSTALL_EXE =	@INSTALL@
19
INSTALL_DATA =	@INSTALL@ -m 644
19
INSTALL_DATA =	@INSTALL@ -m 644
20
INSTALL_SCRIPT = @INSTALL@ -m 755
20
INSTALL_SCRIPT = @INSTALL@ -m 755
21
AWK =		@AWK@
21
AWK =		@AWK@

Return to bug 114918