diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-04-25 09:48:52 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-04-25 09:48:52 +0200 |
commit | eda1bb3c93661da4640026153d371c474f720d28 (patch) | |
tree | 6ade57daa520ba4a652be63a3f0cd1e86a11dd55 /apt-pkg/deb | |
parent | 0e36721c09a1c7a77e9cf45bbbc8476d9ef5c60a (diff) |
* apt-pkg/deb/dpkgpm.cc: wording fixes (thanks to mdz)
* debian/changelog: updated
* debian/rules: invoke tar with --no-recursion to avoid cruft in the tarbal
* po/apt-all.pot: updated
Diffstat (limited to 'apt-pkg/deb')
-rw-r--r-- | apt-pkg/deb/dpkgpm.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/deb/dpkgpm.cc b/apt-pkg/deb/dpkgpm.cc index 3b7b2238a..667db8ff2 100644 --- a/apt-pkg/deb/dpkgpm.cc +++ b/apt-pkg/deb/dpkgpm.cc @@ -623,8 +623,8 @@ bool pkgDPkgPM::Go(int OutStatusFd) 'status: conffile-prompt: conffile : 'current-conffile' 'new-conffile' useredited distedited */ - char* list[4]; - TokSplitString(':', line, list, 5); + char* list[5]; + TokSplitString(':', line, list, sizeof(list)/sizeof(list[0])); char *pkg = list[1]; char *action = _strstrip(list[2]); |