summaryrefslogtreecommitdiff
path: root/cmdline/apt-cdrom.cc
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 17:01:09 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 17:01:09 +0000
commit8835c5d00d1cfb47ad29d4cfd0c80e4f03a58478 (patch)
tree65c97be896cf1a14ebff6efcb06f58c190fc6d9f /cmdline/apt-cdrom.cc
parentde7f0f23ec5f0748bf6b018367126ff9a6d9ed43 (diff)
Change frozen to testing everywhere.
Author: doogie Date: 2003-04-26 23:26:13 GMT Change frozen to testing everywhere.
Diffstat (limited to 'cmdline/apt-cdrom.cc')
-rw-r--r--cmdline/apt-cdrom.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmdline/apt-cdrom.cc b/cmdline/apt-cdrom.cc
index 8425966df..35430f575 100644
--- a/cmdline/apt-cdrom.cc
+++ b/cmdline/apt-cdrom.cc
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: apt-cdrom.cc,v 1.42 2002/02/15 03:40:00 jgg Exp $
+// $Id: apt-cdrom.cc,v 1.43 2003/04/26 23:26:13 doogie Exp $
/* ######################################################################
APT CDROM - Tool for handling APT's CDROM database.
@@ -175,7 +175,7 @@ bool DropBinaryArch(vector<string> &List)
// Score - We compute a 'score' for a path /*{{{*/
// ---------------------------------------------------------------------
/* Paths are scored based on how close they come to what I consider
- normal. That is ones that have 'dist' 'stable' 'frozen' will score
+ normal. That is ones that have 'dist' 'stable' 'testing' will score
higher than ones without. */
int Score(string Path)
{
@@ -184,7 +184,7 @@ int Score(string Path)
Res += 29;
if (Path.find("/binary-") != string::npos)
Res += 20;
- if (Path.find("frozen/") != string::npos)
+ if (Path.find("testing/") != string::npos)
Res += 28;
if (Path.find("unstable/") != string::npos)
Res += 27;