s/bsd_eError/get_rb_eError/g
This commit is contained in:
parent
50a5d52353
commit
c458d0cadc
1 changed files with 3 additions and 3 deletions
|
@ -3,7 +3,7 @@
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
static VALUE
|
static VALUE
|
||||||
bsd_eError(void)
|
get_rb_eError(void)
|
||||||
{
|
{
|
||||||
VALUE rb_mBSD = rb_const_get(rb_cObject, rb_intern("BSD")),
|
VALUE rb_mBSD = rb_const_get(rb_cObject, rb_intern("BSD")),
|
||||||
rb_mControl = rb_const_get(rb_mBSD, rb_intern("Control")),
|
rb_mControl = rb_const_get(rb_mBSD, rb_intern("Control")),
|
||||||
|
@ -52,7 +52,7 @@ feature_set(VALUE self, VALUE path, VALUE state)
|
||||||
VALUE name;
|
VALUE name;
|
||||||
|
|
||||||
if (getuid() != 0) {
|
if (getuid() != 0) {
|
||||||
rb_raise(bsd_eError(), "This operation requires root privileges.");
|
rb_raise(get_rb_eError(), "This operation requires root privileges.");
|
||||||
}
|
}
|
||||||
Check_Type(path, T_STRING);
|
Check_Type(path, T_STRING);
|
||||||
Check_Type(state, T_FIXNUM);
|
Check_Type(state, T_FIXNUM);
|
||||||
|
@ -67,7 +67,7 @@ feature_set(VALUE self, VALUE path, VALUE state)
|
||||||
if (r == 0) {
|
if (r == 0) {
|
||||||
return Qtrue;
|
return Qtrue;
|
||||||
} else {
|
} else {
|
||||||
rb_raise(bsd_eError(), "hbsdcontrol_set_feature_state failed");
|
rb_raise(get_rb_eError(), "hbsdcontrol_set_feature_state failed");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue