summaryrefslogtreecommitdiff
path: root/source3/utils
diff options
context:
space:
mode:
authorMartin Pool <mbp@samba.org>2002-01-03 03:53:41 +0000
committerMartin Pool <mbp@samba.org>2002-01-03 03:53:41 +0000
commit91ec6cf19ffffce3caacea4b4489eb20761de4a5 (patch)
tree2c3f33e04695c1c8452d50160fcf9b61ed64e6d3 /source3/utils
parent9c1ddeca6fad09da9a65197cfed587c83ead2bf1 (diff)
downloadsamba-91ec6cf19ffffce3caacea4b4489eb20761de4a5.tar.gz
samba-91ec6cf19ffffce3caacea4b4489eb20761de4a5.tar.bz2
samba-91ec6cf19ffffce3caacea4b4489eb20761de4a5.zip
smbd should register to receive MSG_REQ_POOL_USAGE. Response should
be information about memory usage, but this is not done yet. (This used to be commit 830a126a442bdde28fc42e23e7260c344b6534b9)
Diffstat (limited to 'source3/utils')
-rw-r--r--source3/utils/smbcontrol.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/source3/utils/smbcontrol.c b/source3/utils/smbcontrol.c
index 98e998a4f7..4f89ae37b5 100644
--- a/source3/utils/smbcontrol.c
+++ b/source3/utils/smbcontrol.c
@@ -401,7 +401,6 @@ static BOOL do_command(char *dest, char *msg_name, int iparams, char **params)
break;
case MSG_REQ_POOL_USAGE:
- {
if (!pool_usage_registered) {
message_register(MSG_POOL_USAGE, pool_usage_cb);
pool_usage_registered = True;
@@ -412,7 +411,6 @@ static BOOL do_command(char *dest, char *msg_name, int iparams, char **params)
break;
}
- }
return (True);
}