refdb: Proper namespace root
diff --git a/src/refdb_fs.c b/src/refdb_fs.c
index 5228cb8..6f2162e 100644
--- a/src/refdb_fs.c
+++ b/src/refdb_fs.c
@@ -1011,7 +1011,7 @@ int git_refdb_backend_fs(
git_buf_puts(&path, repository->path_repository);
if (repository->namespace != NULL)
- git_buf_printf(&path, "refs/%s/", repository->namespace);
+ git_buf_printf(&path, "refs/namespaces/%s/", repository->namespace);
backend->path = git_buf_detach(&path);