]> git.saurik.com Git - apt.git/commitdiff
methods/mirror.cc: init random seed at startup
authorMichael Vogt <michael.vogt@ubuntu.com>
Mon, 14 Mar 2011 15:40:29 +0000 (16:40 +0100)
committerMichael Vogt <michael.vogt@ubuntu.com>
Mon, 14 Mar 2011 15:40:29 +0000 (16:40 +0100)
methods/mirror.cc

index 08a603207191d232090c643d6afdb01f92a02b09..ed42cdbfb75087c9011345aa2b5792f4562cb0e5 100644 (file)
@@ -157,7 +157,7 @@ bool MirrorMethod::RandomizeMirrorFile(string mirror_file)
 
    // read 
    ifstream in(mirror_file.c_str());
-   while ( ! in.eof() ) {
+   while ( !in.eof() ) {
       getline(in, line);
       content.push_back(line);
    }
@@ -403,6 +403,8 @@ int main()
 {
    setlocale(LC_ALL, "");
 
+   srand ( time(NULL) );
+
    MirrorMethod Mth;
 
    return Mth.Loop();