]> git.saurik.com Git - apt.git/commitdiff
Speeling fix
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:55:55 +0000 (16:55 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:55:55 +0000 (16:55 +0000)
Author: jgg
Date: 2000-05-12 04:26:42 GMT
Speeling fix

apt-pkg/packagemanager.cc

index 772ad4a5ba75cb7bd77dfa5db1edc35984693752..99710469b8903325351fad995bdd4fc1c2a709f9 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: packagemanager.cc,v 1.24 1999/12/24 21:10:56 jgg Exp $
+// $Id: packagemanager.cc,v 1.25 2000/05/12 04:26:42 jgg Exp $
 /* ######################################################################
 
    Package Manager - Abstacts the package manager
@@ -426,7 +426,7 @@ bool pkgPackageManager::SmartUnPack(PkgIterator Pkg)
       List->Flag(Pkg,pkgOrderList::UnPacked,pkgOrderList::States);
       if (List->IsFlag(Pkg,pkgOrderList::Immediate) == true)
         if (SmartConfigure(Pkg) == false)
-           return _error->Error("Internal Error, Could not perform immediate configuraton");
+           return _error->Error("Internal Error, Could not perform immediate configuration");
       return true;
    }
 
@@ -525,7 +525,7 @@ bool pkgPackageManager::SmartUnPack(PkgIterator Pkg)
    // Perform immedate configuration of the package.
    if (List->IsFlag(Pkg,pkgOrderList::Immediate) == true)
       if (SmartConfigure(Pkg) == false)
-        return _error->Error("Internal Error, Could not perform immediate configuraton");
+        return _error->Error("Internal Error, Could not perform immediate configuration");
    
    return true;
 }