[INTERPRETER]

* NEW: A domain name '(none)' is ignored when forging the FQDN for 
  components that need it, like gb.net.smtp.


git-svn-id: svn://localhost/gambas/trunk@1721 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2008-12-01 00:30:11 +00:00
parent a2833d395a
commit 84fd13543e

View file

@ -1588,7 +1588,7 @@ char *GB_SystemDomainName(void)
return "";
*COMMON_buffer = 0;
if (*domain)
if (*domain && strcmp(domain, "(none)"))
{
strcpy(COMMON_buffer, domain);
strcat(COMMON_buffer, ".");