svn commit: r359038 - head/usr.bin/ldd
Ed Maste
emaste at FreeBSD.org
Tue Mar 17 16:42:27 UTC 2020
Author: emaste
Date: Tue Mar 17 16:42:25 2020
New Revision: 359038
URL: https://svnweb.freebsd.org/changeset/base/359038
Log:
ldd: add aout deprecation notice
Reported by: kib
Modified:
head/usr.bin/ldd/ldd.c
Modified: head/usr.bin/ldd/ldd.c
==============================================================================
--- head/usr.bin/ldd/ldd.c Tue Mar 17 15:57:25 2020 (r359037)
+++ head/usr.bin/ldd/ldd.c Tue Mar 17 16:42:25 2020 (r359038)
@@ -311,6 +311,7 @@ is_executable(const char *fname, int fd, int *is_shlib
return (0);
}
*type = TYPE_AOUT;
+ warnx("%s: aout support is deprecated", fname);
return (1);
}
#endif
More information about the svn-src-all
mailing list