diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-05-15 12:18:17 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:22:05 -0500 |
commit | 8f9369f2e627cf2da4f5902be570200a9d2b1a67 (patch) | |
tree | 832f64792b0a1b4417034dd5dbfefe0ee6c41428 /source3/utils/status_profile.c | |
parent | fb99bbe67597555109ebd65613a5aab395b43499 (diff) | |
download | samba-8f9369f2e627cf2da4f5902be570200a9d2b1a67.tar.gz samba-8f9369f2e627cf2da4f5902be570200a9d2b1a67.tar.xz samba-8f9369f2e627cf2da4f5902be570200a9d2b1a67.zip |
r22900: Convert profile/ to messaging_send_pid/messaging_register
(This used to be commit edbeea520727f51568ccd8ffa802e06bd120794c)
Diffstat (limited to 'source3/utils/status_profile.c')
-rw-r--r-- | source3/utils/status_profile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/utils/status_profile.c b/source3/utils/status_profile.c index b4c4940f3fd..cc7feec2d83 100644 --- a/source3/utils/status_profile.c +++ b/source3/utils/status_profile.c @@ -47,7 +47,7 @@ static void profile_separator(const char * title) BOOL status_profile_dump(BOOL verbose) { #ifdef WITH_PROFILE - if (!profile_setup(True)) { + if (!profile_setup(NULL, True)) { fprintf(stderr,"Failed to initialise profile memory\n"); return False; } @@ -487,7 +487,7 @@ BOOL status_profile_rates(BOOL verbose) usec_to_sec(sample_interval_usec)); } - if (!profile_setup(True)) { + if (!profile_setup(NULL, True)) { fprintf(stderr,"Failed to initialise profile memory\n"); return False; } |