identation fix

This commit is contained in:
smitsohu 2018-11-13 17:01:59 +01:00 committed by GitHub
parent a0f6b2e900
commit f862c7d8dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -238,9 +238,9 @@ char **build_mount_array(const int mount_id, const char *path) {
// give up if mount id has been reassigned,
// don't remount blacklisted path
if (strncmp(mntp.dir, path, strlen(mntp.dir)) ||
strstr(mntp.fsname, "firejail.ro.dir") ||
strstr(mntp.fsname, "firejail.ro.file"))
break;
strstr(mntp.fsname, "firejail.ro.dir") ||
strstr(mntp.fsname, "firejail.ro.file"))
break;
*rv = strdup(path);
if (*rv == NULL)