summaryrefslogtreecommitdiffstats
path: root/source/python/py_common.c
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
commit63e59b0b737a1cd4ccc588b27e86be8262296052 (patch)
treea71c58652604b05663cdd051c6c01da574dba4f3 /source/python/py_common.c
parent6a1953f2431cc848abf210bdecd7080738991296 (diff)
downloadsamba-63e59b0b737a1cd4ccc588b27e86be8262296052.tar.gz
samba-63e59b0b737a1cd4ccc588b27e86be8262296052.tar.xz
samba-63e59b0b737a1cd4ccc588b27e86be8262296052.zip
Fix transposed args in open_pipe_creds() function.
Diffstat (limited to 'source/python/py_common.c')
-rw-r--r--source/python/py_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/python/py_common.c b/source/python/py_common.c
index a65206e0223..6247bf63717 100644
--- a/source/python/py_common.c
+++ b/source/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 */