summaryrefslogtreecommitdiff
path: root/apt-pkg/edsp/edspindexfile.cc
diff options
context:
space:
mode:
authorDavid Kalnischkies <kalnischkies@gmail.com>2011-03-31 11:58:24 +0200
committerDavid Kalnischkies <kalnischkies@gmail.com>2011-03-31 11:58:24 +0200
commite0a78caad639a3fa8d50edf3374a06805ab86315 (patch)
tree639350795620cbbbf878b4794042ba20fe8b64b9 /apt-pkg/edsp/edspindexfile.cc
parent41ceaf02483a826d5797cf0bd61bd7b6013733a8 (diff)
rename the 'universe' to 'scenario' to reflect the naming in the draft
Diffstat (limited to 'apt-pkg/edsp/edspindexfile.cc')
-rw-r--r--apt-pkg/edsp/edspindexfile.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/apt-pkg/edsp/edspindexfile.cc b/apt-pkg/edsp/edspindexfile.cc
index 366325d0f..f5881e663 100644
--- a/apt-pkg/edsp/edspindexfile.cc
+++ b/apt-pkg/edsp/edspindexfile.cc
@@ -1,7 +1,7 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
/* ######################################################################
- The universe file is designed to work as an intermediate file between
+ The scenario file is designed to work as an intermediate file between
APT and the resolver. Its on propose very similar to a dpkg status file
##################################################################### */
/*}}}*/
@@ -51,7 +51,7 @@ bool edspIndex::Merge(pkgCacheGenerator &Gen,OpProgress *Prog) const
return _error->Errno("fstat","Failed to stat");
CFile->Size = St.st_size;
CFile->mtime = St.st_mtime;
- CFile->Archive = Gen.WriteUniqString("universe");
+ CFile->Archive = Gen.WriteUniqString("edsp::scenario");
if (Gen.MergeList(Parser) == false)
return _error->Error("Problem with MergeList %s",File.c_str());
@@ -67,7 +67,7 @@ class edspIFType: public pkgIndexFile::Type
// we don't have a record parser for this type as the file is not presistent
return NULL;
};
- edspIFType() {Label = "APT universe file";};
+ edspIFType() {Label = "EDSP scenario file";};
};
static edspIFType _apt_Universe;