[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#215403: debconf_capb definition broken



package: cdebconf
version: cvs

debconfclient.h has

#define debconf_capb(_client, _capb...) \
    _client->command(_client, "CAPB", ##_capb)

which should probably have a ", NULL" included to match similar defines
in that file.

kbd-chooser gives SEGV on ia64, probably because of that missing NULL.


-     _client->command(_client, "CAPB", ##_capb)
+     _client->command(_client, "CAPB", ##_capb, NULL)


Alternatively, things calling debconf_capb() need to include a NULL as
the last arg.




Reply to: