diff options
author | Steven Danneman <steven.danneman@isilon.com> | 2009-12-03 19:32:53 -0800 |
---|---|---|
committer | Steven Danneman <steven.danneman@isilon.com> | 2009-12-07 16:10:24 -0800 |
commit | b4c72e44a83157768ae991e72d824f56a381eab6 (patch) | |
tree | decaecf271bbd4dd652700bcaf1be92b6d3439b6 /source4/torture/raw | |
parent | 0c42d65d7cbc24b96f0e9ec700d32da860060174 (diff) | |
download | samba-b4c72e44a83157768ae991e72d824f56a381eab6.tar.gz samba-b4c72e44a83157768ae991e72d824f56a381eab6.tar.bz2 samba-b4c72e44a83157768ae991e72d824f56a381eab6.zip |
s4/torture: fix >80 column spacing issues
Diffstat (limited to 'source4/torture/raw')
-rw-r--r-- | source4/torture/raw/lock.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/source4/torture/raw/lock.c b/source4/torture/raw/lock.c index 6871ed3546..05d9beda30 100644 --- a/source4/torture/raw/lock.c +++ b/source4/torture/raw/lock.c @@ -71,9 +71,10 @@ #define TARGET_IS_W2K8(_tctx) (torture_setting_bool(_tctx, "w2k8", false)) #define TARGET_IS_WIN7(_tctx) (torture_setting_bool(_tctx, "win7", false)) -#define TARGET_IS_WINDOWS(_tctx) ((torture_setting_bool(_tctx, "w2k8", false)) || \ - (torture_setting_bool(_tctx, "win7", false)) || \ - (torture_setting_bool(_tctx, "w2k3", false))) +#define TARGET_IS_WINDOWS(_tctx) \ + ((torture_setting_bool(_tctx, "w2k3", false)) || \ + (torture_setting_bool(_tctx, "w2k8", false)) || \ + (torture_setting_bool(_tctx, "win7", false))) #define TARGET_IS_SAMBA3(_tctx) (torture_setting_bool(_tctx, "samba3", false)) #define TARGET_IS_SAMBA4(_tctx) (torture_setting_bool(_tctx, "samba4", false)) |