]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/contrib/netrc.cc
stop exporting the accidently exported parsenetrc() symbol
[apt.git] / apt-pkg / contrib / netrc.cc
index 0a902f12699e0713327171475f0e5c40001cac76..b3d30fd4af5466ef3732099b87061fb5f3d01019 100644 (file)
@@ -155,18 +155,6 @@ static int parsenetrc_string (char *host, std::string &login, std::string &passw
 
   return retcode;
 }
-// for some unknown reason this method is exported so keep a compatible interface for now …
-int parsenetrc (char *host, char *login, char *password, char *netrcfile = NULL)
-{
-   std::string login_string, password_string;
-   int const ret = parsenetrc_string(host, login_string, password_string, netrcfile);
-   if (ret < 0)
-      return ret;
-   strncpy(login, login_string.c_str(), LOGINSIZE - 1);
-   strncpy(password, password_string.c_str(), PASSWORDSIZE - 1);
-   return ret;
-}
-
 
 void maybe_add_auth (URI &Uri, string NetRCFile)
 {