summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorotto <otto@openbsd.org>2003-09-20 06:28:24 +0000
committerotto <otto@openbsd.org>2003-09-20 06:28:24 +0000
commitb3780ba15e778e99e1f08688c058c7005698dd73 (patch)
tree855aa0e6e9d15aedf20ad6817850867918ad5f70
parentmove the checks after we fixed the hd info. (diff)
downloadwireguard-openbsd-b3780ba15e778e99e1f08688c058c7005698dd73.tar.xz
wireguard-openbsd-b3780ba15e778e99e1f08688c058c7005698dd73.zip
Remove bogus comment.
-rw-r--r--usr.bin/dc/bcode.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/usr.bin/dc/bcode.c b/usr.bin/dc/bcode.c
index 507c748fd77..a53898f7eab 100644
--- a/usr.bin/dc/bcode.c
+++ b/usr.bin/dc/bcode.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bcode.c,v 1.3 2003/09/19 20:58:58 deraadt Exp $ */
+/* $OpenBSD: bcode.c,v 1.4 2003/09/20 06:28:24 otto Exp $ */
/*
* Copyright (c) 2003, Otto Moerbeek <otto@drijf.net>
@@ -17,7 +17,7 @@
*/
#ifndef lint
-static const char rcsid[] = "$OpenBSD: bcode.c,v 1.3 2003/09/19 20:58:58 deraadt Exp $";
+static const char rcsid[] = "$OpenBSD: bcode.c,v 1.4 2003/09/20 06:28:24 otto Exp $";
#endif /* not lint */
#include <ssl/ssl.h>
@@ -963,10 +963,6 @@ bmod(void)
}
r = new_number();
- /*
- * XXX gives incorrect results for scale > 0, but is AT&T and
- * GNU compatible
- */
scale = max(a->scale, b->scale);
r->scale = max(b->scale, a->scale + bmachine.scale);