diff options
author | Tim Potter <tpot@samba.org> | 2002-11-29 02:44:09 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-11-29 02:44:09 +0000 |
commit | 9c7891e964500a8a5c516ad75f8664532323934b (patch) | |
tree | d6473141bce08fac13849e1d36b6ff2f8d4662ea /source3/python | |
parent | bd1b785e4663232672ecc6170add4a6ca9b1eb26 (diff) | |
download | samba-9c7891e964500a8a5c516ad75f8664532323934b.tar.gz samba-9c7891e964500a8a5c516ad75f8664532323934b.tar.bz2 samba-9c7891e964500a8a5c516ad75f8664532323934b.zip |
Fixed silly bug.
(This used to be commit 191c1596f5e939e733c9262c3beaf956328c7be6)
Diffstat (limited to 'source3/python')
-rw-r--r-- | source3/python/py_conv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/python/py_conv.c b/source3/python/py_conv.c index 966a892528..e865daf7d9 100644 --- a/source3/python/py_conv.c +++ b/source3/python/py_conv.c @@ -45,7 +45,7 @@ PyObject *from_struct(void *s, struct pyconv *conv) fstring str = ""; if (u->buffer) - fstr_pull(s, u); + fstr_pull(str, u); item = PyString_FromString(str); PyDict_SetItemString(obj, conv[i].name, item); |