]> git.saurik.com Git - apt.git/blobdiff - apt-private/private-update.cc
prevent C++ locale number formatting in text APIs
[apt.git] / apt-private / private-update.cc
index 1e5d695126827ed5d83669e74f945cc14853f876..ba953a088f714136d37556d61fc442d5dcc02868 100644 (file)
@@ -58,8 +58,8 @@ bool DoUpdate(CommandLine &CmdL)
          if(compExt.empty() == false && 
             APT::String::Endswith(FileName, compExt))
             FileName = FileName.substr(0, FileName.size() - compExt.size() - 1);
          if(compExt.empty() == false && 
             APT::String::Endswith(FileName, compExt))
             FileName = FileName.substr(0, FileName.size() - compExt.size() - 1);
-        c1out << '\'' << I->URI << "' " << FileName << ' ' << 
-            I->Owner->FileSize << ' ' << I->Owner->HashSum() << std::endl;
+        c1out << '\'' << I->URI << "' " << FileName << ' ' <<
+           std::to_string(I->Owner->FileSize) << ' ' << I->Owner->HashSum() << std::endl;
       }
       return true;
    }
       }
       return true;
    }