1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-30 19:42:05 +03:00

smbd should register to receive MSG_REQ_POOL_USAGE. Response should

be information about memory usage, but this is not done yet.
This commit is contained in:
Martin Pool
-
parent b70f870cd9
commit 830a126a44
4 changed files with 47 additions and 2 deletions

View File

@ -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);
}