| 79 | } |
| 80 | |
| 81 | int |
| 82 | LibAliasAttachHandlers(struct proto_handler *p) |
| 83 | { |
| 84 | int error; |
| 85 | |
| 86 | while (p->dir != NODIR) { |
| 87 | error = attach_handler(p); |
| 88 | if (error) |
| 89 | return (error); |
| 90 | p++; |
| 91 | } |
| 92 | |
| 93 | return (0); |
| 94 | } |
| 95 | |
| 96 | /* XXXGL: should be void, but no good reason to break ABI */ |
| 97 | int |
no test coverage detected