From b92da208329d579d2ced29105fd5bf5ce102094e Mon Sep 17 00:00:00 2001 From: Gary Spencer Date: Mon, 29 Jan 2007 10:39:34 +0000 Subject: [PATCH] Only check if the host name is the same as the configured CIFS server name on Windows. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4945 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- .../org/alfresco/filesys/server/config/ServerConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/java/org/alfresco/filesys/server/config/ServerConfiguration.java b/source/java/org/alfresco/filesys/server/config/ServerConfiguration.java index f7430b528a..b7c2b91d90 100644 --- a/source/java/org/alfresco/filesys/server/config/ServerConfiguration.java +++ b/source/java/org/alfresco/filesys/server/config/ServerConfiguration.java @@ -819,7 +819,7 @@ public class ServerConfiguration extends AbstractLifecycleBean // Make sure the CIFS server name does not match the local server name - if (hostName.equals(srvName)) + if (hostName.equals(srvName) && getPlatformType() == PlatformType.WINDOWS) throw new AlfrescoRuntimeException("CIFS server name must be unique"); }