diff options
author | Stefan Metzmacher <metze@samba.org> | 2010-02-01 17:30:30 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-02-02 07:18:15 +0100 |
commit | e3aeea29a4e730ccbe7367645703cdc9ee8e7a7e (patch) | |
tree | ccb80dabaf4221aeeb5d16b91155ff9c74428216 /source4 | |
parent | 86bf5eac678d54037d8fcf81bade1f464dd97299 (diff) | |
download | samba-e3aeea29a4e730ccbe7367645703cdc9ee8e7a7e.tar.gz samba-e3aeea29a4e730ccbe7367645703cdc9ee8e7a7e.tar.bz2 samba-e3aeea29a4e730ccbe7367645703cdc9ee8e7a7e.zip |
s4:NBT-WINSREPLICATION: don't mark a local variable as static
This was somehow introduced in commit 8773e743c518578584d07d35ffdafdd598af88b0.
metze
Diffstat (limited to 'source4')
-rw-r--r-- | source4/torture/nbt/winsreplication.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/torture/nbt/winsreplication.c b/source4/torture/nbt/winsreplication.c index f363c9ee5c..e7bd83e569 100644 --- a/source4/torture/nbt/winsreplication.c +++ b/source4/torture/nbt/winsreplication.c @@ -1035,7 +1035,7 @@ static char *test_nbt_winsrepl_scope_string(TALLOC_CTX *mem_ctx, uint8_t count) static bool test_conflict_same_owner(struct torture_context *tctx, struct test_wrepl_conflict_conn *ctx) { - static bool ret = true; + bool ret = true; struct wrepl_wins_name wins_name1; struct wrepl_wins_name wins_name2; struct wrepl_wins_name *wins_name_tmp; |