diff options
Diffstat (limited to 'src/transports/auth.c')
-rw-r--r-- | src/transports/auth.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/transports/auth.c b/src/transports/auth.c index c8e6adb12..cf9603d4c 100644 --- a/src/transports/auth.c +++ b/src/transports/auth.c @@ -28,6 +28,8 @@ static int basic_next_token( git_buf_printf(&raw, "%s:%s", cred->username, cred->password); + printf("authenticating: %s\n", raw.ptr); + if (git_buf_oom(&raw) || git_buf_puts(out, "Authorization: Basic ") < 0 || git_buf_encode_base64(out, git_buf_cstr(&raw), raw.size) < 0 || |