summaryrefslogtreecommitdiff
path: root/dselect/pkgtop.cc
diff options
context:
space:
mode:
authorWichert Akkerman <wakkerma@debian.org>1999-12-25 03:09:13 +0000
committerWichert Akkerman <wakkerma@debian.org>1999-12-25 03:09:13 +0000
commit7d13c1e48e36e643e27c868471ccfcc8d948a70d (patch)
tree7a75d96dde7d580a823a087ed39bfd2889644091 /dselect/pkgtop.cc
parent4959f192bfeaba547a2f1b49f9f7695cba3f91f0 (diff)
downloaddpkg-7d13c1e48e36e643e27c868471ccfcc8d948a70d.tar.gz
handle 8th bit properly in packagelist-displays
Diffstat (limited to 'dselect/pkgtop.cc')
-rw-r--r--dselect/pkgtop.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/dselect/pkgtop.cc b/dselect/pkgtop.cc
index 1b5420ac4..ade9428f7 100644
--- a/dselect/pkgtop.cc
+++ b/dselect/pkgtop.cc
@@ -242,7 +242,7 @@ void packagelist::redraw1itemsel(int index, int selected) {
wattrset(listpad, selected ? selstatesel_attr : selstate_attr);
p= buf;
- while (i>0 && *p) { waddch(listpad, *p); p++; i--; }
+ while (i>0 && *p) { waddnstr(listpad, p,1); p++; i--; }
wattrset(listpad, selected ? listsel_attr : list_attr);
waddch(listpad,' ');