diff options
Diffstat (limited to 'source3/registry/reg_perfcount.c')
-rw-r--r-- | source3/registry/reg_perfcount.c | 20 |
1 files changed, 5 insertions, 15 deletions
diff --git a/source3/registry/reg_perfcount.c b/source3/registry/reg_perfcount.c index 6a9c1af61b..d660dd0565 100644 --- a/source3/registry/reg_perfcount.c +++ b/source3/registry/reg_perfcount.c @@ -44,6 +44,11 @@ static char *counters_directory(const char *dbname) char *ret = NULL; TALLOC_CTX *ctx = talloc_tos(); + path = state_path(PERFCOUNTDIR); + if (!directory_exist(path)) { + mkdir(path, 0755); + } + path = talloc_asprintf(ctx, "%s/%s", PERFCOUNTDIR, dbname); if (!path) { return NULL; @@ -57,21 +62,6 @@ static char *counters_directory(const char *dbname) /********************************************************************* *********************************************************************/ -void perfcount_init_keys( void ) -{ - char *p = state_path(PERFCOUNTDIR); - - /* no registry keys; just create the perfmon directory */ - - if ( !directory_exist( p ) ) - mkdir( p, 0755 ); - - return; -} - -/********************************************************************* -*********************************************************************/ - uint32 reg_perfcount_get_base_index(void) { const char *fname = counters_directory( NAMES_DB ); |