summaryrefslogtreecommitdiffstats
path: root/ruby.h
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-07-29 07:52:55 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-07-29 07:52:55 +0000
commit8719f269f064d9134d193eb7688f510ebadd6ae7 (patch)
tree35cc22bf84d65b4ec02bf15cb22df6fab7e1b813 /ruby.h
parent52012e4d7c7bbe7b8eb9d4e7263930bf6234f6c1 (diff)
downloadruby-8719f269f064d9134d193eb7688f510ebadd6ae7.tar.gz
ruby-8719f269f064d9134d193eb7688f510ebadd6ae7.tar.xz
ruby-8719f269f064d9134d193eb7688f510ebadd6ae7.zip
* lib/net/smtp.rb (Net::SMTP::send0): add taint check.
* ruby.h (LLONG_MIN): wrong value. * io.c (rb_f_getc): $stdin may not be IO. [ruby-dev:20973] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4206 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ruby.h')
-rw-r--r--ruby.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ruby.h b/ruby.h
index 8de1a2f42..f624ed186 100644
--- a/ruby.h
+++ b/ruby.h
@@ -109,7 +109,7 @@ typedef unsigned long ID;
# define LLONG_MIN LONG_LONG_MIN
# else
# ifdef _I64_MIN
-# define LLONG_MIN _I64_MAX
+# define LLONG_MIN _I64_MIX
# else
# define LLONG_MIN (-LLONG_MAX-1)
# endif