summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-dialup/xc/files/xc-4.3.2-fix-set_bps-overflow.patch')
-rw-r--r--net-dialup/xc/files/xc-4.3.2-fix-set_bps-overflow.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/net-dialup/xc/files/xc-4.3.2-fix-set_bps-overflow.patch b/net-dialup/xc/files/xc-4.3.2-fix-set_bps-overflow.patch
deleted file mode 100644
index 5934aa2f6d77..000000000000
--- a/net-dialup/xc/files/xc-4.3.2-fix-set_bps-overflow.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff -Naurp xc-4.3.2.orig/xcmain.c xc-4.3.2/xcmain.c
---- xc-4.3.2.orig/xcmain.c 1996-11-24 01:35:41.000000000 -0500
-+++ xc-4.3.2/xcmain.c 2014-04-18 19:58:26.267227496 -0400
-@@ -696,8 +696,8 @@ static void
- SET_bps()
- {
- if (statflag){
-- char br[6];
-- sprintf(br, "%d", mrate( NULL ));
-+ char br[11];
-+ snprintf(br, 11, "%d", mrate( NULL ));
- fprintf(tfp, statfmt, "bps", "Bits per Second", br);
- return;
- }