diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2020-06-30 22:10:07 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2020-06-30 22:10:07 (GMT) |
commit | d3c1294c05579db9dd5a1436883fe3fb78a052be (patch) | |
tree | 73d69a89271c15f1273cd1259ac85a276f1b9528 /plugins/pychrysalide/glibext | |
parent | 90184484440afd7bc4b85587f450c1b9ccd6e8de (diff) |
Fixed some cases from the test suite.
Diffstat (limited to 'plugins/pychrysalide/glibext')
-rw-r--r-- | plugins/pychrysalide/glibext/constants.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/pychrysalide/glibext/constants.c b/plugins/pychrysalide/glibext/constants.c index e24a6e0..47bd00d 100644 --- a/plugins/pychrysalide/glibext/constants.c +++ b/plugins/pychrysalide/glibext/constants.c @@ -70,6 +70,7 @@ bool define_binary_portion_constants(PyTypeObject *type) if (result) result = add_const_to_group(values, "READ", PAC_READ); if (result) result = add_const_to_group(values, "WRITE", PAC_WRITE); if (result) result = add_const_to_group(values, "EXEC", PAC_EXEC); + if (result) result = add_const_to_group(values, "ALL", PAC_ALL); if (!result) { |