diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | bignum.c | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,8 @@ +Sun May 25 23:48:21 2003 Nobuyoshi Nakada <[email protected]> + + * bignum.c (rb_quad_pack): should negate negative bignum. + (ruby-bugs-ja:PR#474) + Sun May 25 03:27:25 2003 Minero Aoki <[email protected]> * lib/net/smtp.rb: support LOGIN authentication, based on @@ -206,6 +206,7 @@ rb_quad_pack(buf, val) q = BIGUP(q); q += ds[len]; } + if (!RBIGNUM(val)->sign) q = -q; } memcpy(buf, (char*)&q, SIZEOF_LONG_LONG); } |