diff options
| author | Donald Lee <dlqs@gmx.com> | 2021-07-08 17:51:14 +0800 |
|---|---|---|
| committer | Donald Lee <dlqs@gmx.com> | 2021-07-18 06:32:03 +0800 |
| commit | 64d457d7ac22d643afb5638bacb0b9713274689e (patch) | |
| tree | 1ecc21f377cd98abb7d69b66f3bad4c6e90b95ad /lib/frrscript.h | |
| parent | 8a04c1e74e0a21d34a626c378a80c3d5b6302971 (diff) | |
lib: Rename frrscript_unload to delete
frrscript_load now loads a function instead of a file, so frrscript_unload
should be renamed since it does not unload a function.
Signed-off-by: Donald Lee <dlqs@gmx.com>
Diffstat (limited to 'lib/frrscript.h')
| -rw-r--r-- | lib/frrscript.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/frrscript.h b/lib/frrscript.h index 1f234a38a9..14a922a741 100644 --- a/lib/frrscript.h +++ b/lib/frrscript.h @@ -89,7 +89,7 @@ int frrscript_load(struct frrscript *fs, const char *function_name, /* * Destroy FRR script. */ -void frrscript_unload(struct frrscript *fs); +void frrscript_delete(struct frrscript *fs); /* * Register a Lua codec for a type. |
