diff --git a/RELNOTES b/RELNOTES index 2530a7a06..dca08ef02 100644 --- a/RELNOTES +++ b/RELNOTES @@ -5,6 +5,9 @@ firejail (0.9.37) baseline; urgency=low * added --disable-network and --disable-userns compile time flags * symlink invocation * added KMail, Seamonkey, Telegram, Mathematica, uGet profiles + * --chroot in user mode allowed only if seccomp support is available + * in current Linux kernel + * the first protocol list installed takes precedence * --tmpfs option allowed only running as root * added --private-tmp option * bugfixes diff --git a/src/firejail/protocol.c b/src/firejail/protocol.c index e6a8f61ab..407f8c62d 100644 --- a/src/firejail/protocol.c +++ b/src/firejail/protocol.c @@ -119,6 +119,11 @@ void protocol_list(void) { void protocol_store(const char *prlist) { assert(prlist); + if (cfg.protocol) { + fprintf(stderr, "Warning: a protocol list is present, the new list \"%s\" will not be installed\n", prlist); + return; + } + // temporary list char *tmplist = strdup(prlist); if (!tmplist)