diff options
author | Miles Bader <miles@gnu.org> | 1996-01-27 17:12:56 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-01-27 17:12:56 +0000 |
commit | 0d84b8c1a374acd9ea99e4d412d25a50cd17b776 (patch) | |
tree | fb37d9abfaf66a1c6ef660a30651f61de78b7e40 | |
parent | 049d3e7d8ac652b9221f25bc1271a792be46db38 (diff) |
(ports_create_class): Initialize the uninhibitable_rpcs field.
-rw-r--r-- | libports/create-class.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libports/create-class.c b/libports/create-class.c index 8a2d68b0..7db99ca1 100644 --- a/libports/create-class.c +++ b/libports/create-class.c @@ -36,6 +36,7 @@ ports_create_class (void (*clean_routine)(void *), cl->rpcs = 0; cl->ports = NULL; cl->count = 0; + cl->uninhibitable_rpcs = ports_default_uninhibitable_rpcs; return cl; } |