diff options
author | Volker Lendecke <vl@samba.org> | 2012-02-01 19:42:55 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2012-02-01 20:19:31 +0100 |
commit | 3c6bd8c1ef0cee7d63ce870f320ad5fc83b1dc7b (patch) | |
tree | 10cd0fa9b824f47be3f72ecde8aa251b51546ca6 /source3 | |
parent | 1168700d91c4443a580e8b7c84f6ce3fd3181dab (diff) | |
download | samba-3c6bd8c1ef0cee7d63ce870f320ad5fc83b1dc7b.tar.gz samba-3c6bd8c1ef0cee7d63ce870f320ad5fc83b1dc7b.tar.bz2 samba-3c6bd8c1ef0cee7d63ce870f320ad5fc83b1dc7b.zip |
s3-vfstest: Fix some pointless statics
Diffstat (limited to 'source3')
-rw-r--r-- | source3/torture/vfstest.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/torture/vfstest.c b/source3/torture/vfstest.c index 6406156751..082d3d4df7 100644 --- a/source3/torture/vfstest.c +++ b/source3/torture/vfstest.c @@ -417,11 +417,11 @@ int last_message = -1; int main(int argc, char *argv[]) { - static char *cmdstr = NULL; - struct cmd_set **cmd_set; - static struct vfs_state vfs; + char *cmdstr = NULL; + struct cmd_set **cmd_set; + struct vfs_state vfs; int i; - static char *filename = NULL; + char *filename = NULL; TALLOC_CTX *frame = talloc_stackframe(); /* make sure the vars that get altered (4th field) are in |