summaryrefslogtreecommitdiff
path: root/dselect/main.cc
diff options
context:
space:
mode:
authorWichert Akkerman <wakkerma@debian.org>1999-12-12 23:44:46 +0000
committerWichert Akkerman <wakkerma@debian.org>1999-12-12 23:44:46 +0000
commit7f89e78fd32b31f93a33318c30c9b00173ffe5ae (patch)
tree5c3f1698f09d07161b0dd420cead2dedd1c10ddc /dselect/main.cc
parent652578fc7c800f3a54dcd82a65f2fbbd73fdd383 (diff)
downloaddpkg-7f89e78fd32b31f93a33318c30c9b00173ffe5ae.tar.gz
dselect/main.cc: We need to printf programdesc as well
autogen.sh: Remove libtoolize call automake/sysconf.m4: new autoconf-macros for sysconf filesdb/main.c: also check MEMINFO_IN_SYSINFO configure.in: remove ugly sysinfo-hacks to use new ac macros instead utils/start-stop-daemon.c: modify to build on sunos
Diffstat (limited to 'dselect/main.cc')
-rw-r--r--dselect/main.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/dselect/main.cc b/dselect/main.cc
index 0d05e52c3..2ab579c1b 100644
--- a/dselect/main.cc
+++ b/dselect/main.cc
@@ -234,7 +234,8 @@ int refreshmenu(void) {
clear();
attrset(A_BOLD);
- mvaddnstr(0,0, gettext(programdesc),x-1);
+ sprintf(buf,gettext(programdesc),DSELECT);
+ mvaddnstr(0,0,buf,x-1);
attrset(A_NORMAL);
const struct menuentry *mep; int i;