mirror of
https://github.com/infiniteCable2/openpilot.git
synced 2026-08-06 00:36:29 +08:00
fix params permissions for offroad (#2356)
* fix params permissions * don't need that one old-commit-hash: 20a6ca83c9194025bb6f2edf2c3992b7b6c9001a
This commit is contained in:
@@ -167,6 +167,12 @@ int Params::write_db_value(const char* key, const char* value, size_t value_size
|
||||
if (result < 0) {
|
||||
goto cleanup;
|
||||
}
|
||||
} else {
|
||||
// Ensure permissions are correct in case we didn't create the symlink
|
||||
result = chmod(path.c_str(), 0777);
|
||||
if (result < 0) {
|
||||
goto cleanup;
|
||||
}
|
||||
}
|
||||
|
||||
// Write value to temp.
|
||||
|
||||
Reference in New Issue
Block a user