aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-misc/axel/files/axel-2.4-bffr-overflow.patch')
-rw-r--r--net-misc/axel/files/axel-2.4-bffr-overflow.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/net-misc/axel/files/axel-2.4-bffr-overflow.patch b/net-misc/axel/files/axel-2.4-bffr-overflow.patch
deleted file mode 100644
index 24fae8c..0000000
--- a/net-misc/axel/files/axel-2.4-bffr-overflow.patch
+++ /dev/null
@@ -1,16 +0,0 @@
- http.c | 2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/http.c b/http.c
-index 5d64e9b..db91701 100644
---- a/http.c
-+++ b/http.c
-@@ -164,7 +164,7 @@ int http_exec( http_t *conn )
- {
- i ++;
- }
-- strncat( conn->headers, s, MAX_QUERY );
-+ strncat( conn->headers, s, MAX_QUERY - 1);
- }
-
- #ifdef DEBUG