X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=lib%2Fnetrc.c;h=7435d94c482811b520197f8688656da8235e2d15;hb=7a9f915fa6be8c8955ff2c59169538a4d0349080;hp=06f8ea15a41ac6a3f6de29be9fd0f1406c4e3b52;hpb=2bc9d6bb53df44a0c5174767de734620c2cdfd9e;p=platform%2Fupstream%2Fcurl.git diff --git a/lib/netrc.c b/lib/netrc.c index 06f8ea1..7435d94 100644 --- a/lib/netrc.c +++ b/lib/netrc.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2015, Daniel Stenberg, , et al. + * Copyright (C) 1998 - 2014, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -31,11 +31,13 @@ #include "strequal.h" #include "strtok.h" +#include "curl_memory.h" #include "rawstr.h" -#include "curl_printf.h" -/* The last #include files should be: */ -#include "curl_memory.h" +#define _MPRINTF_REPLACE /* use our functions only */ +#include + +/* The last #include file should be: */ #include "memdebug.h" /* Get user and password from .netrc when given a machine name */ @@ -102,16 +104,16 @@ int Curl_parsenetrc(const char *host, netrcfile = curl_maprintf("%s%s%s", home, DIR_CHAR, NETRC); if(home_alloc) - free(home); + Curl_safefree(home); if(!netrcfile) { return -1; } netrc_alloc = TRUE; } - file = fopen(netrcfile, FOPEN_READTEXT); + file = fopen(netrcfile, "r"); if(netrc_alloc) - free(netrcfile); + Curl_safefree(netrcfile); if(file) { char *tok; char *tok_buf; @@ -137,10 +139,6 @@ int Curl_parsenetrc(const char *host, 'password'. */ state=HOSTFOUND; } - else if(Curl_raw_equal("default", tok)) { - state=HOSTVALID; - retcode=0; /* we did find our host */ - } break; case HOSTFOUND: if(Curl_raw_equal(host, tok)) {