1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/etc/etc.c (setup_passwd): revert r41560, unnecessary

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41563 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
charliesome 2013-06-22 06:26:32 +00:00
parent 3f236ce7ba
commit 98fec7b4a2
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Sat Jun 22 15:25:00 2013 Charlie Somerville <charliesome@ruby-lang.org>
* ext/etc/etc.c (setup_passwd): revert r41560, unnecessary
Sat Jun 22 14:39:00 2013 Charlie Somerville <charliesome@ruby-lang.org>
* ext/etc/etc.c (Init_etc): omit 'passwd' from definition of Etc::Passwd

View file

@ -116,7 +116,7 @@ setup_passwd(struct passwd *pwd)
#ifdef HAVE_STRUCT_PASSWD_PW_EXPIRE
INT2NUM(pwd->pw_expire),
#endif
(VALUE)0 /*dummy*/
0 /*dummy*/
);
}
#endif