Revision 77edbde474cb494832afaa36054b10578a226774 authored by Junio C Hamano on 12 October 2021, 20:51:48 UTC, committed by Junio C Hamano on 12 October 2021, 20:51:48 UTC
Sensitive data in the HTTP trace were supposed to be redacted, but
we failed to do so in HTTP/2 requests.

* jk/http-redact-fix:
  http: match headers case-insensitively when redacting
2 parent s ef09a7f + b66c77a
Raw File
exec-cmd.h
#ifndef GIT_EXEC_CMD_H
#define GIT_EXEC_CMD_H

struct strvec;

void git_set_exec_path(const char *exec_path);
void git_resolve_executable_dir(const char *path);
const char *git_exec_path(void);
void setup_path(void);
const char **prepare_git_cmd(struct strvec *out, const char **argv);
int execv_git_cmd(const char **argv); /* NULL terminated */
LAST_ARG_MUST_BE_NULL
int execl_git_cmd(const char *cmd, ...);
char *system_path(const char *path);

#endif /* GIT_EXEC_CMD_H */
back to top