source4/torture: Drop unused variable attribute
commita7c3213523d6eaf2f6945dfe48c83cea2df9ca0c
authorMartin Schwenke <martin@meltin.net>
Tue, 15 Feb 2022 22:11:43 +0000 (16 09:11 +1100)
committerVolker Lendecke <vl@samba.org>
Thu, 17 Feb 2022 19:06:24 +0000 (17 19:06 +0000)
tree8dac4f12b837b1b78798309b02b68649954b2f65
parent2b649604aee683a48c520a5c46d6c3032b268d6c
source4/torture: Drop unused variable attribute

clang complains:

../../source4/client/client.c:1569:11: error: variable 'attribute' set but not used [-Werror,-Wunused-but-set-variable]
        uint16_t attribute = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
                 ^

That is, the variable is initialised and updated but the value is
never used.

Commit 2f377d5101783ed4d8c96a46aaec61895cc7b6ad from 2004 dropped the
use of this variable.

Signed-off-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Volker Lendecke <vl@samba.org>
Autobuild-User(master): Volker Lendecke <vl@samba.org>
Autobuild-Date(master): Thu Feb 17 19:06:25 UTC 2022 on sn-devel-184
source4/client/client.c