summary refs log tree commit diff
path: root/pkgs/os-specific/linux/usbguard/daemon_read_only_config.patch
blob: eb4d5df698accd1492a19b1ee072525301c5b831 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/Library/ConfigFilePrivate.cpp b/src/Library/ConfigFilePrivate.cpp
index 8aefa65..40914f7 100644
--- a/src/Library/ConfigFilePrivate.cpp
+++ b/src/Library/ConfigFilePrivate.cpp
@@ -51,7 +51,7 @@ namespace usbguard
 
   void ConfigFilePrivate::open(const std::string& path)
   {
-    _stream.open(path, std::ios::in|std::ios::out);
+    _stream.open(path, std::ios::in);
     if (!_stream.is_open()) {
       throw std::runtime_error("Can't open " + path);
     }