aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/firejail/fs_home.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/firejail/fs_home.c b/src/firejail/fs_home.c
index ac80456da..fd2441832 100644
--- a/src/firejail/fs_home.c
+++ b/src/firejail/fs_home.c
@@ -186,7 +186,7 @@ static int store_asoundrc(void) {
186 186
187 struct stat s; 187 struct stat s;
188 if (stat(src, &s) == 0) { 188 if (stat(src, &s) == 0) {
189 if (s.st_uid != getuid() || s.st_gid != getgid()) { 189 if (s.st_uid != getuid()) {
190 fwarning(".asoundrc is not owned by the current user, skipping...\n"); 190 fwarning(".asoundrc is not owned by the current user, skipping...\n");
191 return 0; 191 return 0;
192 } 192 }