Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 547152
Collapse All | Expand All

(-)axel.h (-1 / +1 lines)
Lines 64-70 Link Here
64
#endif
64
#endif
65
65
66
/* Compiled-in settings							*/
66
/* Compiled-in settings							*/
67
#define MAX_STRING		1024
67
#define MAX_STRING		4096
68
#define MAX_ADD_HEADERS	10
68
#define MAX_ADD_HEADERS	10
69
#define MAX_REDIR		25
69
#define MAX_REDIR		25
70
#define AXEL_VERSION_STRING	"2.4"
70
#define AXEL_VERSION_STRING	"2.4"
(-)conn.c (-1 / +1 lines)
Lines 326-332 Link Here
326
				break;
326
				break;
327
			if( ( t = http_header( conn->http, "location:" ) ) == NULL )
327
			if( ( t = http_header( conn->http, "location:" ) ) == NULL )
328
				return( 0 );
328
				return( 0 );
329
			sscanf( t, "%255s", s );
329
			sscanf( t, "%4000s", s );
330
			if( strstr( s, "://" ) == NULL)
330
			if( strstr( s, "://" ) == NULL)
331
			{
331
			{
332
				sprintf( conn->http->headers, "%s%s",
332
				sprintf( conn->http->headers, "%s%s",

Return to bug 547152