summaryrefslogtreecommitdiff
path: root/apt-pkg/sourcelist.cc
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 17:07:05 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 17:07:05 +0000
commit9a2331e1e396453a13574b8417d82a6b2ecf1dd1 (patch)
treeb5c7291bbbf0dfa6578ee050329c6d341d198faf /apt-pkg/sourcelist.cc
parent29fd82a4a892798ccb6cf677a577a135ebe4dfd5 (diff)
* Fix typo in error message when encountering unknown t...
Author: mdz Date: 2004-06-07 23:08:00 GMT * Fix typo in error message when encountering unknown type in source list (Closes: #253217)
Diffstat (limited to 'apt-pkg/sourcelist.cc')
-rw-r--r--apt-pkg/sourcelist.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/sourcelist.cc b/apt-pkg/sourcelist.cc
index 12db63079..734e5b075 100644
--- a/apt-pkg/sourcelist.cc
+++ b/apt-pkg/sourcelist.cc
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: sourcelist.cc,v 1.24 2002/07/08 04:18:07 jgg Exp $
+// $Id: sourcelist.cc,v 1.25 2004/06/07 23:08:00 mdz Exp $
/* ######################################################################
List of Sources
@@ -267,7 +267,7 @@ bool pkgSourceList::Read(string File)
Type *Parse = Type::GetType(LineType.c_str());
if (Parse == 0)
- return _error->Error(_("Type '%s' is not known in on line %u in source list %s"),LineType.c_str(),CurLine,File.c_str());
+ return _error->Error(_("Type '%s' is not known on line %u in source list %s"),LineType.c_str(),CurLine,File.c_str());
// Authenticated repository
Vendor const *Vndr = 0;