diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2021-09-29 14:35:35 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-29 14:35:35 +0200 |
| commit | a89bae26f78c00080ecc48c4dbbd86c2ceafb547 (patch) | |
| tree | 54e3465415786cf3535813fa0f49082d933cca20 /lib/module.h | |
| parent | ffd7467cc43a0593b21cbf7e62d4fdb1ff8688e7 (diff) | |
| parent | 52fad8f6563080c64b5609f8b357ed47b1dfb78c (diff) | |
Merge pull request #9560 from LabNConsulting/ziemba/frrmod_load-error-messages
frrmod_load(): fix error messages
Diffstat (limited to 'lib/module.h')
| -rw-r--r-- | lib/module.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/module.h b/lib/module.h index 6275877cb3..ae1ca2f757 100644 --- a/lib/module.h +++ b/lib/module.h @@ -91,7 +91,9 @@ extern struct frrmod_runtime *frrmod_list; extern void frrmod_init(struct frrmod_runtime *modinfo); extern struct frrmod_runtime *frrmod_load(const char *spec, const char *dir, - char *err, size_t err_len); + void (*pFerrlog)(const void *, + const char *), + const void *pErrlogCookie); #if 0 /* not implemented yet */ extern void frrmod_unload(struct frrmod_runtime *module); |
