commit 0378d09b7a1766aa944af6677dd84cf9a7a95df8 from: Stefan Sperling via: Thomas Adam date: Fri Mar 21 13:22:46 2025 UTC in send_client_info() send the repo name as intended, not the repo path commit - 6e9d7766439f38442605ce08d2ffc11fe3751a76 commit + 0378d09b7a1766aa944af6677dd84cf9a7a95df8 blob - d38e54c3db9b765517f47b5637cc471be106016f blob + 240db0652a900c587966e49b2e944672d2eaba64 --- gotd/gotd.c +++ gotd/gotd.c @@ -474,7 +474,7 @@ send_client_info(struct gotd_imsgev *iev, struct gotd_ proc = client->repo; if (proc) { - if (strlcpy(iclient.repo_name, proc->repo_path, + if (strlcpy(iclient.repo_name, proc->repo_name, sizeof(iclient.repo_name)) >= sizeof(iclient.repo_name)) { return got_error_msg(GOT_ERR_NO_SPACE, "repo name too long");