From: Volker Lendecke Date: Thu, 2 Jul 2009 09:06:21 +0000 (+0200) Subject: Fix two pointless statics X-Git-Tag: talloc-2.0.0~774 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=520b6c0d5010731f6f512a9eb038f28adfd9cd03;p=thirdparty%2Fsamba.git Fix two pointless statics --- diff --git a/source3/torture/torture.c b/source3/torture/torture.c index 1780f120949..012f8939c5b 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -705,7 +705,7 @@ static bool rw_torture2(struct cli_state *c1, struct cli_state *c2) static bool run_readwritetest(int dummy) { - static struct cli_state *cli1, *cli2; + struct cli_state *cli1, *cli2; bool test1, test2 = False; if (!torture_open_connection(&cli1, 0) || !torture_open_connection(&cli2, 1)) {