diff options
author | 1997-01-03 21:05:28 +0000 | |
---|---|---|
committer | 1997-01-03 21:05:28 +0000 | |
commit | 1c53168b8aaa4886c93e127aafc006bdd4705b50 (patch) | |
tree | 0cd881754b3f0e8880d3c7cfc3a20e26296ca013 | |
parent | Remove private copy of md* and fix md4 usage to match libc md4. (diff) | |
download | wireguard-openbsd-1c53168b8aaa4886c93e127aafc006bdd4705b50.tar.xz wireguard-openbsd-1c53168b8aaa4886c93e127aafc006bdd4705b50.zip |
removed unnecessary test
-rw-r--r-- | usr.bin/aucat/aucat.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/aucat/aucat.c b/usr.bin/aucat/aucat.c index 2864b0c59cf..0ec78577dee 100644 --- a/usr.bin/aucat/aucat.c +++ b/usr.bin/aucat/aucat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: aucat.c,v 1.1 1997/01/02 22:12:27 kstailey Exp $ */ +/* $OpenBSD: aucat.c,v 1.2 1997/01/03 21:05:28 kstailey Exp $ */ /* * Copyright (c) 1997 Kenneth Stailey. All rights reserved. * @@ -87,8 +87,7 @@ main(int argc, char **argv) lseek(fd, 0, SEEK_SET); } else { read(fd, &data, sizeof(data)); - if (BYTE_ORDER != BIG_ENDIAN) - data = htonl(data); + data = htonl(data); lseek(fd, (off_t)data, SEEK_SET); } if (playfile(fd) < 0) |