Jeff King <peff@xxxxxxxx> writes: > Since we now only call init_curl_http_auth when we know we need auth, I > think it would make more sense to just move the user_name asking there, > too, like: > > static void init_curl_http_auth(CURL *result) > { > struct strbuf up = STRBUF_INIT; > > if (!user_name) > user_name = xstrdup(git_getpass_with_description("Username", description); > if (!user_pass) > user_pass = xstrdup(git_getpass_with_description("Password", description); > > strbuf_addf(&up, "%s:%s", user_name, user_pass); > curl_easy_setopt(result, CURLOPT_USERPWD, strbuf_detach(&up, NULL)); > } > > And then it's easy to swap out the asking for credential_fill() when it > becomes available. But I admit I don't care that much now, as I'll just > end up doing that refactoring later with my credential patches anyway. Yeah, let's not over-churn this part for now as we know it will change anyway. Thanks both! -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html