summaryrefslogtreecommitdiff
path: root/source3/python
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-09-02 07:42:39 +0000
committerTim Potter <tpot@samba.org>2002-09-02 07:42:39 +0000
commitd75fc27fa1b68762317999d65a232284abf72ef6 (patch)
tree15571d611732fa9238a92a54ff1e90b9ce2863f5 /source3/python
parentf76bdfdcaaafc5ad904014257a23726d5d53fd87 (diff)
downloadsamba-d75fc27fa1b68762317999d65a232284abf72ef6.tar.gz
samba-d75fc27fa1b68762317999d65a232284abf72ef6.tar.bz2
samba-d75fc27fa1b68762317999d65a232284abf72ef6.zip
Fix transposed args in open_pipe_creds() function.
(This used to be commit 63e59b0b737a1cd4ccc588b27e86be8262296052)
Diffstat (limited to 'source3/python')
-rw-r--r--source3/python/py_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/python/py_common.c b/source3/python/py_common.c
index a65206e022..6247bf6371 100644
--- a/source3/python/py_common.c
+++ b/source3/python/py_common.c
@@ -211,7 +211,7 @@ struct cli_state *open_pipe_creds(char *server, PyObject *creds,
/* Extract credentials from the python dictionary */
- if (!py_parse_creds(creds, &username, &password, &domain, errstr))
+ if (!py_parse_creds(creds, &username, &domain, &password, errstr))
return NULL;
/* Now try to connect */