diff options
author | An-Cheng Huang <ancheng@vyatta.com> | 2009-10-09 19:44:23 -0700 |
---|---|---|
committer | An-Cheng Huang <ancheng@vyatta.com> | 2009-10-09 19:44:23 -0700 |
commit | 9e85f9cee6d0d923d4d76d5f936bbcb7a0610f26 (patch) | |
tree | 44f8f49c85ccc515d7ba071de1bd7eb69f411c8b /src/set.c | |
parent | 085b30c4fb0afe2dce88363b16068113c7c267c1 (diff) | |
download | vyatta-cfg-9e85f9cee6d0d923d4d76d5f936bbcb7a0610f26.tar.gz vyatta-cfg-9e85f9cee6d0d923d4d76d5f936bbcb7a0610f26.zip |
commit post-processing performance optimization
* convert subshell invocations to library function calls.
* reduce boot time by ~40 seconds for "certain configuration".
Diffstat (limited to 'src/set.c')
-rw-r--r-- | src/set.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -109,6 +109,9 @@ int main(int argc, char **argv) boolean need_mod = FALSE, not_new = FALSE; boolean empty_val = FALSE; + /* this is needed before calling certain glib functions */ + g_type_init(); + cli_operation_name = "Set"; if (initialize_output() == -1) { |