diff options
author | taca <taca@pkgsrc.org> | 2010-03-21 14:49:10 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2010-03-21 14:49:10 +0000 |
commit | da29ebdfe74171ee2c6e160099e1209f2a18e77e (patch) | |
tree | 32fc431090b0697df158404dcc2a24e3f954f0bd /sysutils/ruby-quota/patches | |
parent | 9e7ae425c429998d412de821f8a2a71a94b196ff (diff) | |
download | pkgsrc-da29ebdfe74171ee2c6e160099e1209f2a18e77e.tar.gz |
Improve portability (NULL v.s. 0).
Bump PKGREVISION.
Diffstat (limited to 'sysutils/ruby-quota/patches')
-rw-r--r-- | sysutils/ruby-quota/patches/patch-ab | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/sysutils/ruby-quota/patches/patch-ab b/sysutils/ruby-quota/patches/patch-ab index 4a9bf00ebbf..1cec9f1e49b 100644 --- a/sysutils/ruby-quota/patches/patch-ab +++ b/sysutils/ruby-quota/patches/patch-ab @@ -1,6 +1,6 @@ -$NetBSD: patch-ab,v 1.5 2009/10/27 15:29:33 taca Exp $ +$NetBSD: patch-ab,v 1.6 2010/03/21 14:49:10 taca Exp $ ---- quota.c.orig 2002-03-30 23:59:12.000000000 +0900 +--- quota.c.orig 2002-03-30 14:59:12.000000000 +0000 +++ quota.c @@ -5,9 +5,13 @@ @@ -99,6 +99,15 @@ $NetBSD: patch-ab,v 1.5 2009/10/27 15:29:33 taca Exp $ UINT2NUM(c_dqb->dqb_curspace), #else UINT2NUM(c_dqb->dqb_curblocks), +@@ -442,7 +468,7 @@ Init_quota() + "curinodes", + "btimelimit", + "itimelimit", +- 0); ++ NULL); + + /* for compatibility */ + #define DQ_ALIAS(a,b) rb_alias(rb_sDiskQuota,rb_intern(#a),rb_intern(#b)) @@ -454,7 +480,7 @@ Init_quota() DQ_ALIAS(fsoftlimit=, isoftlimit=); DQ_ALIAS(curfiles=, curinodes=); |