1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
--- test116.left-P.txt
+++ test116.right-P.txt
@@ -254,7 +254,7 @@
const char *uri, *dirname;
char *proto, *host, *port, *repo_name, *server_path;
char *default_destdir = NULL, *id_str = NULL;
- const char *repo_path;
+ const char *repo_path, *remote_repo_path;
struct got_repository *repo = NULL;
struct got_pathlist_head refs, symrefs, wanted_branches, wanted_refs;
struct got_pathlist_entry *pe;
@@ -275,6 +275,9 @@
goto done;
}
got_path_strip_trailing_slashes(server_path);
+ remote_repo_path = server_path;
+ while (remote_repo_path[0] == '/')
+ remote_repo_path++;
if (asprintf(&gotconfig,
"remote \"%s\" {\n"
"\tserver %s\n"
@@ -285,7 +288,7 @@
"}\n",
GOT_FETCH_DEFAULT_REMOTE_NAME, host, proto,
port ? "\tport " : "", port ? port : "", port ? "\n" : "",
- server_path,
+ remote_repo_path,
mirror_references ? "\tmirror-references yes\n" : "") == -1) {
error = got_error_from_errno("asprintf");
goto done;
|