diff options
| author | Vicent Marti <tanoku@gmail.com> | 2013-05-01 15:20:08 +0200 |
|---|---|---|
| committer | Vicent Marti <tanoku@gmail.com> | 2013-05-01 15:20:08 +0200 |
| commit | 2ba55c1f0df3400c15dbdd7b21d1f3d354ab2e3c (patch) | |
| tree | 86099d23348b34145885d51cc11dc527fa6317a0 | |
| parent | 758e50c51ece8c0fec89e34b72eb5e571b2d0962 (diff) | |
| download | libgit2-2ba55c1f0df3400c15dbdd7b21d1f3d354ab2e3c.tar.gz | |
refdb: Proper namespace root
| -rw-r--r-- | src/refdb_fs.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
