]> git.ipfire.org Git - thirdparty/git.git/blobdiff - credential.c
Merge branch 'ab/detox-gettext-tests'
[thirdparty/git.git] / credential.c
index efc29dc5e1d28e0b2f6f92051de291dfb13e57ae..e5202fbef261cce258019fbbaa98e687d0d044d3 100644 (file)
@@ -202,7 +202,7 @@ int credential_read(struct credential *c, FILE *fp)
 {
        struct strbuf line = STRBUF_INIT;
 
-       while (strbuf_getline_lf(&line, fp) != EOF) {
+       while (strbuf_getline(&line, fp) != EOF) {
                char *key = line.buf;
                char *value = strchr(key, '=');