diff options
Diffstat (limited to 'source/rpc_client')
-rw-r--r-- | source/rpc_client/cli_svcctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/rpc_client/cli_svcctl.c b/source/rpc_client/cli_svcctl.c index cb016cbd146..95673c15654 100644 --- a/source/rpc_client/cli_svcctl.c +++ b/source/rpc_client/cli_svcctl.c @@ -42,7 +42,7 @@ static struct svc_state_msg state_msg_table[] = { ********************************************************************/ const char* svc_status_string( uint32 state ) { - static fstring msg; + fstring msg; int i; fstr_sprintf( msg, "Unknown State [%d]", state ); @@ -54,7 +54,7 @@ const char* svc_status_string( uint32 state ) } } - return msg; + return talloc_strdup(talloc_tos(), msg); } /******************************************************************** |