opnsense-src/contrib/libdiff/test/expect116.diff
Dag-Erling Smørgrav 59c8e88e72 Add 'contrib/libdiff/' from commit '9eb461aa4b61ab47855b2cee9e5b626a76888b5e'
git-subtree-dir: contrib/libdiff
git-subtree-mainline: f6d489f402
git-subtree-split: 9eb461aa4b

Reviewed by:	imp
Sponsored by:	Klara, Inc.
2024-03-11 14:48:08 +01:00

30 lines
985 B
Diff

--- 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;