diff options
author | Tim Potter <tpot@samba.org> | 2002-05-16 05:13:50 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-05-16 05:13:50 +0000 |
commit | 70da1dec973e1736a6ec9f12a1598a077f36e274 (patch) | |
tree | 8fa2c246c0e986c45d5e937a1a6e41a5aacbd0f6 /source3/python | |
parent | 286d3a80fdcd316ebbf63b007a24e787143313a4 (diff) | |
download | samba-70da1dec973e1736a6ec9f12a1598a077f36e274.tar.gz samba-70da1dec973e1736a6ec9f12a1598a077f36e274.tar.bz2 samba-70da1dec973e1736a6ec9f12a1598a077f36e274.zip |
Shorten some debug messages.
(This used to be commit 179c68bd0db7c2631fcf052a746acacedf3c47ac)
Diffstat (limited to 'source3/python')
-rw-r--r-- | source3/python/py_lsa.c | 2 | ||||
-rw-r--r-- | source3/python/py_samr.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/python/py_lsa.c b/source3/python/py_lsa.c index 82055181cc..0f71187aa6 100644 --- a/source3/python/py_lsa.c +++ b/source3/python/py_lsa.c @@ -75,7 +75,7 @@ static PyObject *lsa_open_policy(PyObject *self, PyObject *args, if (!(mem_ctx = talloc_init())) { PyErr_SetString( - lsa_error, "unable to initialise talloc context\n"); + lsa_error, "unable to init talloc context\n"); return NULL; } diff --git a/source3/python/py_samr.c b/source3/python/py_samr.c index d0573171f3..6256629592 100644 --- a/source3/python/py_samr.c +++ b/source3/python/py_samr.c @@ -296,7 +296,7 @@ static PyObject *samr_connect(PyObject *self, PyObject *args, PyObject *kw) if (!(mem_ctx = talloc_init())) { PyErr_SetString(samr_ntstatus, - "unable to initialise talloc context\n"); + "unable to init talloc context\n"); goto done; } |