Hello,
detected error is:
certtool-cfg.c:289: warning: implicit declaration of function 'getpass'
and a consequence of it is:
certtool-cfg.c:289: warning: return makes pointer from integer without a cast
Indeed, certtool-cfg.c misses #include <unistd.h> which defines the
function char *getpass(). Being getpass() defaulted to int, get_pass()
complains for having an int instead of a char*, which on ia64 have
different size. Hence the issue.
In short: the code seems to just misses the header.
All the best,
Roberto
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]