diff options
author | Michael Adam <obnox@samba.org> | 2012-02-02 15:42:16 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-02-03 11:10:29 +0100 |
commit | 31165925521150b04e907f2fd6869183a7a3b8ef (patch) | |
tree | ae4e02728401a98e62ee886da49e660b3b15a4bd /source4/torture | |
parent | 2b9299310fdce8d4298089bf67cafd6e9e748ec2 (diff) | |
download | samba-31165925521150b04e907f2fd6869183a7a3b8ef.tar.gz samba-31165925521150b04e907f2fd6869183a7a3b8ef.tar.bz2 samba-31165925521150b04e907f2fd6869183a7a3b8ef.zip |
s4:torture:smb2: remove an unused variable from torture_smb2_setinfo()
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/smb2/setinfo.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/source4/torture/smb2/setinfo.c b/source4/torture/smb2/setinfo.c index 734cf1fa77..fb012eeb2f 100644 --- a/source4/torture/smb2/setinfo.c +++ b/source4/torture/smb2/setinfo.c @@ -51,7 +51,6 @@ bool torture_smb2_setinfo(struct torture_context *tctx) bool ret = true; struct smb2_handle handle; char *fname; - char *fname_new; union smb_fileinfo finfo2; union smb_setfileinfo sfinfo; struct security_ace ace; @@ -65,7 +64,6 @@ bool torture_smb2_setinfo(struct torture_context *tctx) ZERO_STRUCT(handle); fname = talloc_asprintf(tctx, BASEDIR "fnum_test_%d.txt", n); - fname_new = talloc_asprintf(tctx, BASEDIR "fnum_test_new_%d.txt", n); if (!torture_smb2_connection(tctx, &tree)) { return false; |