diff options
| author | David Lamparter <equinox@diac24.net> | 2019-12-06 14:38:55 +0100 |
|---|---|---|
| committer | David Lamparter <equinox@diac24.net> | 2019-12-06 15:13:29 +0100 |
| commit | 1c0d880814e3fcf76b3351e6756c8ec378f357cb (patch) | |
| tree | c3c92aca5cea0c05e335ccdb102cb839fc8ff07e /tests/helpers/c/main.c | |
| parent | b0a89c27ad2e7f980d6bf9c78c6ff6a5cfe058c7 (diff) | |
lib: rename memory_vty.c to lib_vty.c
And memory_init() to lib_cmd_init().
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'tests/helpers/c/main.c')
| -rw-r--r-- | tests/helpers/c/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/helpers/c/main.c b/tests/helpers/c/main.c index b1dcfcf707..2de29cbdbc 100644 --- a/tests/helpers/c/main.c +++ b/tests/helpers/c/main.c @@ -24,7 +24,7 @@ #include "vty.h" #include "command.h" #include "memory.h" -#include "memory_vty.h" +#include "lib_vty.h" extern void test_init(void); @@ -154,7 +154,7 @@ int main(int argc, char **argv) /* Library inits. */ cmd_init(1); vty_init(master, false); - memory_init(); + lib_cmd_init(); yang_init(); nb_init(master, NULL, 0); |
