summaryrefslogtreecommitdiff
path: root/desktop/source/app/appinit.cxx
diff options
context:
space:
mode:
authorMichael Stahl <michael.stahl@allotropia.de>2023-11-08 16:12:08 +0100
committerMichael Stahl <michael.stahl@allotropia.de>2023-11-09 17:11:00 +0100
commitec3ffe62685f9c5e944ae0924a9963fbe016a706 (patch)
tree6b6acdbb727c8593409c087bbc5b5dedb01f4812 /desktop/source/app/appinit.cxx
parent8e46dd9599bc84f60abf2d2d5625fa15076dfc80 (diff)
officecfg,desktop: add Office::Security::Net::AllowInsecureUNORemoteProtocol
This disables the "com.sun.star.office.Acceptor" UNO service that handles the soffice "--accept" argument; now it can be disabled and locked in configuration by system administrator. Change-Id: I6747a128c3afa6a0cb351766365c8affc0b2614e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159151 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Diffstat (limited to 'desktop/source/app/appinit.cxx')
-rw-r--r--desktop/source/app/appinit.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/desktop/source/app/appinit.cxx b/desktop/source/app/appinit.cxx
index 6eca704c7fb9..51b466c6b980 100644
--- a/desktop/source/app/appinit.cxx
+++ b/desktop/source/app/appinit.cxx
@@ -41,6 +41,8 @@
#include <unotools/tempfile.hxx>
#include <vcl/svapp.hxx>
#include <unotools/pathoptions.hxx>
+
+#include <iostream>
#include <map>
using namespace ::com::sun::star::uno;
@@ -165,7 +167,7 @@ void Desktop::createAcceptor(const OUString& aAcceptString)
}
else
{
- SAL_WARN( "desktop.app", "Acceptor could not be created");
+ ::std::cerr << "UNO Remote Protocol acceptor could not be created, presumably because it has been disabled in configuration." << ::std::endl;
}
}