diff options
author | Matthias Dieter Wallnöfer <mdw@samba.org> | 2010-08-26 22:43:05 +0200 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mdw@samba.org> | 2010-08-27 19:11:44 +0200 |
commit | a133d83607ce9db9a4725b170001e934648150da (patch) | |
tree | d9f65aeca7c30680d1837536415b75a20621b08a /source4/torture | |
parent | 4def6775b56242590b4f7d9cb0f5b0442e33248f (diff) | |
download | samba-a133d83607ce9db9a4725b170001e934648150da.tar.gz samba-a133d83607ce9db9a4725b170001e934648150da.tar.bz2 samba-a133d83607ce9db9a4725b170001e934648150da.zip |
s4:torture/raw/notify.c - freeable stuff shouldn't be "const"
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/raw/notify.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/torture/raw/notify.c b/source4/torture/raw/notify.c index dd3aae3d66..6fc005929c 100644 --- a/source4/torture/raw/notify.c +++ b/source4/torture/raw/notify.c @@ -1619,7 +1619,7 @@ static bool test_notify_alignment(struct smbcli_state *cli, "abc", "abcd" }; int num_names = ARRAY_SIZE(fnames); - const char *fpath = NULL; + char *fpath = NULL; torture_comment(tctx, "TESTING CHANGE NOTIFY REPLY ALIGNMENT\n"); |