summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
authorDirk Grobler <dg@openoffice.org>2001-06-14 09:04:33 +0000
committerDirk Grobler <dg@openoffice.org>2001-06-14 09:04:33 +0000
commitbf17ef9b21972a1ea411c4f1e0797eb08ded8d26 (patch)
tree8eda4e05ff37b1c7d1af09e400fae1e6150e71e2 /configmgr
parenta50308ea488c32e174a1a06742778d230956853d (diff)
#88234# wrong remote session detection
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/source/misc/bootstrap.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/configmgr/source/misc/bootstrap.cxx b/configmgr/source/misc/bootstrap.cxx
index 121f440adfb3..d503ca2eec44 100644
--- a/configmgr/source/misc/bootstrap.cxx
+++ b/configmgr/source/misc/bootstrap.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: bootstrap.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: jb $ $Date: 2001-06-07 11:07:28 $
+ * last change: $Author: dg $ $Date: 2001-06-14 10:04:33 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1072,7 +1072,7 @@ namespace configmgr
if (!isSessionTypeKnown()) return false;
OUString const sSessionType = getSessionType();
- return (0 == sSessionType.compareToAscii(PORTAL_SESSION_IDENTIFIER)) &&
+ return (0 == sSessionType.compareToAscii(PORTAL_SESSION_IDENTIFIER)) ||
(0 == sSessionType.compareToAscii(REMOTE_SESSION_IDENTIFIER));
}