Author: mdz
Date: 2004-06-07 23:08:00 GMT
* Fix typo in error message when encountering unknown type in source list
(Closes: #253217)
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
// -*- 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
/* ######################################################################
List of Sources
Type *Parse = Type::GetType(LineType.c_str());
if (Parse == 0)
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;
// Authenticated repository
Vendor const *Vndr = 0;
affect apt-get build-dep as well as apt-get source
* Remove aborted remnants of a different method of implementing DEB_BUILD_OPTIONS
from debian/rules
affect apt-get build-dep as well as apt-get source
* Remove aborted remnants of a different method of implementing DEB_BUILD_OPTIONS
from debian/rules
+ * Fix typo in error message when encountering unknown type in source list
+ (Closes: #253217)