diff options
author | newton <newton@FreeBSD.org> | 1999-01-30 06:16:48 +0000 |
---|---|---|
committer | newton <newton@FreeBSD.org> | 1999-01-30 06:16:48 +0000 |
commit | 6a94e83a778dbe0ab7d4e560c8c7694a60c30050 (patch) | |
tree | b65472cded18cf9e3a8a2f874e404b8f9d374947 /usr.bin/brandelf | |
parent | c7eb1145227f9d1c114e01185f0e09263ad5f144 (diff) | |
download | FreeBSD-src-6a94e83a778dbe0ab7d4e560c8c7694a60c30050.zip FreeBSD-src-6a94e83a778dbe0ab7d4e560c8c7694a60c30050.tar.gz |
Added "SVR4" as an acceptable brand
Diffstat (limited to 'usr.bin/brandelf')
-rw-r--r-- | usr.bin/brandelf/brandelf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/brandelf/brandelf.c b/usr.bin/brandelf/brandelf.c index 77a6aa7..5ad1469 100644 --- a/usr.bin/brandelf/brandelf.c +++ b/usr.bin/brandelf/brandelf.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: brandelf.c,v 1.9 1998/04/21 02:31:09 eivind Exp $ + * $Id: brandelf.c,v 1.10 1998/04/21 02:44:12 eivind Exp $ */ #include <elf.h> @@ -133,7 +133,7 @@ usage() static int iselftype(const char *elftype) { /* XXX - any more types? */ - const char *elftypes[] = { "FreeBSD", "Linux" }; + const char *elftypes[] = { "FreeBSD", "Linux", "SVR4" }; int elfwalk; for (elfwalk = 0; |