diff options
author | Volker Lendecke <vl@samba.org> | 2011-03-27 17:20:28 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2011-03-27 19:04:10 +0200 |
commit | a60ba5461855825c71e290f03fa1182210f87cae (patch) | |
tree | 7a15b296d29fc324f4c3e98240567e06f4dbbbba /source3 | |
parent | 5d9075c0498853010fb8036d4aa71bd6e1b284af (diff) | |
download | samba-a60ba5461855825c71e290f03fa1182210f87cae.tar.gz samba-a60ba5461855825c71e290f03fa1182210f87cae.tar.bz2 samba-a60ba5461855825c71e290f03fa1182210f87cae.zip |
s3: Remove a pointless static
Diffstat (limited to 'source3')
-rw-r--r-- | source3/torture/torture.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/torture/torture.c b/source3/torture/torture.c index a2230ec203..ebb305fbe1 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -2777,7 +2777,7 @@ static void rand_buf(char *buf, int len) static bool run_negprot_nowait(int dummy) { int i; - static struct cli_state *cli; + struct cli_state *cli; bool correct = True; printf("starting negprot nowait test\n"); |