diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-12-18 08:47:06 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-12-18 08:47:06 +0000 |
| commit | 80a71ef0c37cb9852382d4662f470d833c57bcf4 (patch) | |
| tree | 22b6a55b921d76a6d432f0a2156496ccb827be73 /ext/syslog/syslog.c | |
| parent | 389789c094a14a17490e8ea32467187758e5a91f (diff) | |
| download | ruby-80a71ef0c37cb9852382d4662f470d833c57bcf4.tar.gz ruby-80a71ef0c37cb9852382d4662f470d833c57bcf4.tar.xz ruby-80a71ef0c37cb9852382d4662f470d833c57bcf4.zip | |
* string.c (rb_str_replace): swap arguments of OBJ_INFECT.
* eval.c (rb_thread_schedule): should not select a thread which is
not yet initialized.
* time.c (time_plus): wrong boundary check.
* time.c (time_minus): ditto.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1918 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/syslog/syslog.c')
| -rw-r--r-- | ext/syslog/syslog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/syslog/syslog.c b/ext/syslog/syslog.c index 5bd577caa..43392a3ce 100644 --- a/ext/syslog/syslog.c +++ b/ext/syslog/syslog.c @@ -62,7 +62,7 @@ static VALUE cSyslog_open(int argc, VALUE *argv, VALUE self) fac = INT2NUM(LOG_USER); } - Check_SafeStr(ident); + SafeStringValue(ident); syslog_ident = ident; syslog_options = opt; syslog_facility = fac; |
