From 2ba55c1f0df3400c15dbdd7b21d1f3d354ab2e3c Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Wed, 1 May 2013 15:20:08 +0200 Subject: [PATCH] refdb: Proper namespace root --- src/refdb_fs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/refdb_fs.c b/src/refdb_fs.c index 5228cb811..6f2162e77 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);