don't depend on the existance of warnx (use fprintf)
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@5158 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -85,9 +85,9 @@ try_aix(void)
|
||||
if(ptr == NULL) {
|
||||
if(_kafs_debug) {
|
||||
if(errno == ENOEXEC && (p = dlerror()) != NULL)
|
||||
warnx("%s: %s", path, p);
|
||||
fprintf(stderr, "dlopen(%s): %s\n", path, p);
|
||||
else if (errno != ENOENT)
|
||||
warn("%s", path);
|
||||
fprintf(stderr, "dlopen(%s): %s\n", path, strerror(errno));
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
Reference in New Issue
Block a user