From 7adb6af115dfc1189c2894d45a796b7b8dfe7a05 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Fri, 29 Nov 2002 01:10:31 +0000 Subject: Merge of global_myname() fixes from HEAD. --- source/python/py_common.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'source/python/py_common.c') diff --git a/source/python/py_common.c b/source/python/py_common.c index 364271d57c4..6e299470bf8 100644 --- a/source/python/py_common.c +++ b/source/python/py_common.c @@ -45,9 +45,6 @@ static BOOL initialised; void py_samba_init(void) { - extern pstring global_myname; - char *p; - if (initialised) return; @@ -59,11 +56,7 @@ void py_samba_init(void) /* Misc other stuff */ load_interfaces(); - - fstrcpy(global_myname, myhostname()); - p = strchr(global_myname, '.'); - if (p) - *p = 0; + init_names(); initialised = True; } -- cgit