diff options
author | Tim Potter <tpot@samba.org> | 2002-09-02 07:42:39 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-09-02 07:42:39 +0000 |
commit | d75fc27fa1b68762317999d65a232284abf72ef6 (patch) | |
tree | 15571d611732fa9238a92a54ff1e90b9ce2863f5 /source3 | |
parent | f76bdfdcaaafc5ad904014257a23726d5d53fd87 (diff) | |
download | samba-d75fc27fa1b68762317999d65a232284abf72ef6.tar.gz samba-d75fc27fa1b68762317999d65a232284abf72ef6.tar.xz samba-d75fc27fa1b68762317999d65a232284abf72ef6.zip |
Fix transposed args in open_pipe_creds() function.
(This used to be commit 63e59b0b737a1cd4ccc588b27e86be8262296052)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/python/py_common.c | 2 |
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 */ |