diff options
| author | Junio C Hamano <gitster@pobox.com> | 2025-02-27 15:22:59 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-02-27 15:23:00 -0800 |
| commit | 9d8cce051add2eb82cb0be97a58201c1d3fe0c1b (patch) | |
| tree | 656c7d9a67e9233f2b3ecdae15a3461b49af783e /connect.c | |
| parent | 08bdfd453584e489d5a551aecbdcb77584e1b958 (diff) | |
| parent | cf7ee481902df64b26ac8b1741eca861a8d2f7cc (diff) | |
| download | git-9d8cce051add2eb82cb0be97a58201c1d3fe0c1b.tar.xz | |
Merge branch 'ua/os-version-capability'
The value of "uname -s" is by default sent over the wire as a part
of the "version" capability.
* ua/os-version-capability:
agent: advertise OS name via agent capability
t5701: add setup test to remove side-effect dependency
version: extend get_uname_info() to hide system details
version: refactor get_uname_info()
version: refactor redact_non_printables()
version: replace manual ASCII checks with isprint() for clarity
Diffstat (limited to 'connect.c')
| -rw-r--r-- | connect.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -624,7 +624,7 @@ const char *parse_feature_value(const char *feature_list, const char *feature, s *offset = found + len - orig_start; return value; } - /* feature with a value (e.g., "agent=git/1.2.3") */ + /* feature with a value (e.g., "agent=git/1.2.3-Linux") */ else if (*value == '=') { size_t end; |
