diff options
author | Andrew Bartlett <abartlet@samba.org> | 2004-06-13 23:50:55 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:56:38 -0500 |
commit | b1268fc4455f61ee49412fc256106cd34e98ce7c (patch) | |
tree | 3b2308a0f1f3e597ab8bc968d5295988c1654ec0 /source4/torture/rpc | |
parent | 8dcb4aa084457e6d7a68467dceebc11abe4464bd (diff) | |
download | samba-b1268fc4455f61ee49412fc256106cd34e98ce7c.tar.gz samba-b1268fc4455f61ee49412fc256106cd34e98ce7c.tar.bz2 samba-b1268fc4455f61ee49412fc256106cd34e98ce7c.zip |
r1123: Make all lp_ string functions return 'const char *'.
Fix other 'const' warnings in the torture code.
Andrew Bartlett
(This used to be commit 5d39d7497f189da15d659b3f83b7314026040a15)
Diffstat (limited to 'source4/torture/rpc')
-rw-r--r-- | source4/torture/rpc/mgmt.c | 2 | ||||
-rw-r--r-- | source4/torture/rpc/scanner.c | 2 | ||||
-rw-r--r-- | source4/torture/rpc/schannel.c | 2 | ||||
-rw-r--r-- | source4/torture/rpc/winreg.c | 3 |
4 files changed, 5 insertions, 4 deletions
diff --git a/source4/torture/rpc/mgmt.c b/source4/torture/rpc/mgmt.c index 431502fc5c..a95fe43fb8 100644 --- a/source4/torture/rpc/mgmt.c +++ b/source4/torture/rpc/mgmt.c @@ -173,7 +173,7 @@ BOOL torture_rpc_mgmt(int dummy) TALLOC_CTX *mem_ctx; BOOL ret = True; int i; - char *binding = lp_parm_string(-1, "torture", "binding"); + const char *binding = lp_parm_string(-1, "torture", "binding"); struct dcerpc_binding b; mem_ctx = talloc_init("torture_rpc_mgmt"); diff --git a/source4/torture/rpc/scanner.c b/source4/torture/rpc/scanner.c index be83b6b6c6..0c2f8dfbbe 100644 --- a/source4/torture/rpc/scanner.c +++ b/source4/torture/rpc/scanner.c @@ -134,7 +134,7 @@ BOOL torture_rpc_scanner(int dummy) TALLOC_CTX *mem_ctx; BOOL ret = True; int i; - char *binding = lp_parm_string(-1, "torture", "binding"); + const char *binding = lp_parm_string(-1, "torture", "binding"); struct dcerpc_binding b; mem_ctx = talloc_init("torture_rpc_scanner"); diff --git a/source4/torture/rpc/schannel.c b/source4/torture/rpc/schannel.c index 712c2563a3..e120c0d2ad 100644 --- a/source4/torture/rpc/schannel.c +++ b/source4/torture/rpc/schannel.c @@ -61,7 +61,7 @@ static BOOL test_schannel(TALLOC_CTX *mem_ctx, void *join_ctx; const char *machine_password; NTSTATUS status; - char *binding = lp_parm_string(-1, "torture", "binding"); + const char *binding = lp_parm_string(-1, "torture", "binding"); struct dcerpc_binding b; struct dcerpc_pipe *p; diff --git a/source4/torture/rpc/winreg.c b/source4/torture/rpc/winreg.c index 3a1d7be68b..86b91eacc2 100644 --- a/source4/torture/rpc/winreg.c +++ b/source4/torture/rpc/winreg.c @@ -55,7 +55,8 @@ static BOOL test_GetVersion(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, } static BOOL test_CreateKey(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, - struct policy_handle *handle, char *name, const char *class) + struct policy_handle *handle, const char *name, + const char *class) { struct winreg_CreateKey r; struct policy_handle newhandle; |