From 9d4f766ae35176b0597dd359d692e4166c2314fc Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Sun, 18 Jan 2009 23:20:01 +0100 Subject: Revert "Remove another use of global_loadparm." This reverts commit ee7c2170a79f1ca9e2ad1a209d342d8fd287ec8d. A much more correct fix will come soon. (40ef7739f4141598a6392c203e4a2d52d972fe06 from the samba4wins tree) metze --- libcli/nbt/pynbt.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libcli/nbt/pynbt.c') diff --git a/libcli/nbt/pynbt.c b/libcli/nbt/pynbt.c index 63ee9bb01f..9be6c79a8b 100644 --- a/libcli/nbt/pynbt.c +++ b/libcli/nbt/pynbt.c @@ -52,8 +52,7 @@ static PyObject *py_nbt_node_init(PyTypeObject *self, PyObject *args, PyObject * return NULL; ev = s4_event_context_init(ret->mem_ctx); - ret->socket = nbt_name_socket_init(ret->mem_ctx, ev, - py_iconv_convenience(ret->mem_ctx)); + ret->socket = nbt_name_socket_init(ret->mem_ctx, ev, py_iconv_convenience(ret->mem_ctx)); return (PyObject *)ret; } -- cgit