]> git.saurik.com Git - apt.git/commitdiff
fix typo (mkostemp->mkstemp)
authorMichael Vogt <mvo@debian.org>
Sat, 31 Aug 2013 15:05:23 +0000 (17:05 +0200)
committerMichael Vogt <mvo@debian.org>
Sat, 31 Aug 2013 15:05:23 +0000 (17:05 +0200)
apt-pkg/contrib/fileutl.cc

index 4806ae3f9bc29248dff48b3a000f37bd6a843435..3966eb0edd41f1e175469e5f1108638020292736 100644 (file)
@@ -977,7 +977,7 @@ bool FileFd::Open(string FileName,unsigned int const Mode,APT::Configuration::Co
       if((iFd = mkstemp(name)) == -1)
       {
           free(name);
-          return FileFdErrno("mkostemp", "Could not create temporary file for %s", FileName.c_str());
+          return FileFdErrno("mkstemp", "Could not create temporary file for %s", FileName.c_str());
       }
 
       TemporaryFileName = string(name);