projects
/
apt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Slovak translation updated
[apt.git]
/
apt-pkg
/
acquire.cc
diff --git
a/apt-pkg/acquire.cc
b/apt-pkg/acquire.cc
index cbd67055d952a37de89027a85804764869f9a5b8..74510ae21aaaef46ff13aeb9578c8f4b295c99f7 100644
(file)
--- a/
apt-pkg/acquire.cc
+++ b/
apt-pkg/acquire.cc
@@
-24,7
+24,8
@@
#include <iostream>
#include <sstream>
#include <iostream>
#include <sstream>
-
+#include <stdio.h>
+
#include <dirent.h>
#include <sys/time.h>
#include <errno.h>
#include <dirent.h>
#include <sys/time.h>
#include <errno.h>
@@
-265,7
+266,7
@@
pkgAcquire::MethodConfig *pkgAcquire::GetConfig(string Access)
return 0;
/* if a method uses DownloadLimit, we switch to SingleInstance mode */
return 0;
/* if a method uses DownloadLimit, we switch to SingleInstance mode */
- if(_config->FindI("Acquire::"+Access+"::DlLimit",0) > 0)
+ if(_config->FindI("Acquire::"+Access+"::Dl
-
Limit",0) > 0)
Conf->SingleInstance = true;
return Conf;
Conf->SingleInstance = true;
return Conf;
@@
-444,8
+445,9
@@
bool pkgAcquire::Clean(string Dir)
unlink(Dir->d_name);
};
unlink(Dir->d_name);
};
- chdir(StartDir.c_str());
closedir(D);
closedir(D);
+ if (chdir(StartDir.c_str()) != 0)
+ return _error->Errno("chdir",_("Unable to change to %s"),StartDir.c_str());
return true;
}
/*}}}*/
return true;
}
/*}}}*/
@@
-483,7
+485,7
@@
double pkgAcquire::PartialPresent()
Total += (*I)->PartialSize;
return Total;
}
Total += (*I)->PartialSize;
return Total;
}
-
+ /*}}}*/
// Acquire::UriBegin - Start iterator for the uri list /*{{{*/
// ---------------------------------------------------------------------
/* */
// Acquire::UriBegin - Start iterator for the uri list /*{{{*/
// ---------------------------------------------------------------------
/* */
@@
-500,7
+502,6
@@
pkgAcquire::UriIterator pkgAcquire::UriEnd()
return UriIterator(0);
}
/*}}}*/
return UriIterator(0);
}
/*}}}*/
-
// Acquire::MethodConfig::MethodConfig - Constructor /*{{{*/
// ---------------------------------------------------------------------
/* */
// Acquire::MethodConfig::MethodConfig - Constructor /*{{{*/
// ---------------------------------------------------------------------
/* */
@@
-514,7
+515,6
@@
pkgAcquire::MethodConfig::MethodConfig()
Next = 0;
}
/*}}}*/
Next = 0;
}
/*}}}*/
-
// Queue::Queue - Constructor /*{{{*/
// ---------------------------------------------------------------------
/* */
// Queue::Queue - Constructor /*{{{*/
// ---------------------------------------------------------------------
/* */
@@
-619,7
+619,7
@@
bool pkgAcquire::Queue::Startup()
added other source retry to have cycle maintain a pipeline depth
on its own. */
if (Cnf->Pipeline == true)
added other source retry to have cycle maintain a pipeline depth
on its own. */
if (Cnf->Pipeline == true)
- MaxPipeDepth =
10
;
+ MaxPipeDepth =
_config->FindI("Acquire::Max-Pipeline-Depth",10)
;
else
MaxPipeDepth = 1;
}
else
MaxPipeDepth = 1;
}
@@
-726,7
+726,6
@@
void pkgAcquire::Queue::Bump()
Cycle();
}
/*}}}*/
Cycle();
}
/*}}}*/
-
// AcquireStatus::pkgAcquireStatus - Constructor /*{{{*/
// ---------------------------------------------------------------------
/* */
// AcquireStatus::pkgAcquireStatus - Constructor /*{{{*/
// ---------------------------------------------------------------------
/* */
@@
-796,7
+795,7
@@
bool pkgAcquireStatus::Pulse(pkgAcquire *Owner)
// Compute the CPS
struct timeval NewTime;
gettimeofday(&NewTime,0);
// Compute the CPS
struct timeval NewTime;
gettimeofday(&NewTime,0);
- if (
NewTime.tv_sec - Time.tv_sec == 6 && NewTime.tv_usec > Time.tv_usec
||
+ if (
(NewTime.tv_sec - Time.tv_sec == 6 && NewTime.tv_usec > Time.tv_usec)
||
NewTime.tv_sec - Time.tv_sec > 6)
{
double Delta = NewTime.tv_sec - Time.tv_sec +
NewTime.tv_sec - Time.tv_sec > 6)
{
double Delta = NewTime.tv_sec - Time.tv_sec +