diff options
author | Michael Vogt <mvo@debian.org> | 2013-08-31 17:05:23 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2013-08-31 17:05:23 +0200 |
commit | 98b69f9dd0ced02b01e276041635c7bb7f2484e3 (patch) | |
tree | 481bf317fbfd00164e8a5a7ef9196b844012d6f8 /apt-pkg/contrib/fileutl.cc | |
parent | f68cba9b720bc44aacf6af468836287d9754afea (diff) |
fix typo (mkostemp->mkstemp)
Diffstat (limited to 'apt-pkg/contrib/fileutl.cc')
-rw-r--r-- | apt-pkg/contrib/fileutl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/contrib/fileutl.cc b/apt-pkg/contrib/fileutl.cc index 4806ae3f9..3966eb0ed 100644 --- a/apt-pkg/contrib/fileutl.cc +++ b/apt-pkg/contrib/fileutl.cc @@ -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); |