From: Michael Vogt Date: Tue, 28 Aug 2012 09:44:26 +0000 (+0200) Subject: apt-pkg/contrib/netrc.cc: use a slightly smaller login/password size X-Git-Tag: 0.9.7.6~3^2 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/7735ad0500b6fefef03b2a3dc2a6843e82353e94 apt-pkg/contrib/netrc.cc: use a slightly smaller login/password size --- diff --git a/apt-pkg/contrib/netrc.cc b/apt-pkg/contrib/netrc.cc index 43abc62ce..06059dfc1 100644 --- a/apt-pkg/contrib/netrc.cc +++ b/apt-pkg/contrib/netrc.cc @@ -40,8 +40,8 @@ enum { }; /* make sure we have room for at least this size: */ -#define LOGINSIZE 1024 -#define PASSWORDSIZE 1024 +#define LOGINSIZE 256 +#define PASSWORDSIZE 256 #define NETRC DOT_CHAR "netrc" /* returns -1 on failure, 0 if the host is found, 1 is the host isn't found */