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/delete.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/delete.c')
-rw-r--r-- | src/delete.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/delete.c b/src/delete.c index 3011c12..f432934 100644 --- a/src/delete.c +++ b/src/delete.c @@ -148,6 +148,9 @@ int main(int argc, char **argv) char *cp, *delp, *endp; boolean do_umount; + /* this is needed before calling certain glib functions */ + g_type_init(); + cli_operation_name = "Delete"; if (initialize_output() == -1) { |