diff options
| -rw-r--r-- | cmds/installd/installd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/installd/installd.cpp b/cmds/installd/installd.cpp index 673ff0d513..b5bc28c1d3 100644 --- a/cmds/installd/installd.cpp +++ b/cmds/installd/installd.cpp @@ -74,7 +74,7 @@ static int initialize_directories() { // Read current filesystem layout version to handle upgrade paths char version_path[PATH_MAX]; - snprintf(version_path, PATH_MAX, "%s.layout_version", android_data_dir.c_str()); + snprintf(version_path, PATH_MAX, "%smisc/installd/layout_version", android_data_dir.c_str()); int oldVersion; if (fs_read_atomic_int(version_path, &oldVersion) == -1) { |