aboutsummaryrefslogtreecommitdiff
path: root/net/lft
diff options
context:
space:
mode:
authorEdwin Groothuis <edwin@FreeBSD.org>2003-10-03 10:56:33 +0000
committerEdwin Groothuis <edwin@FreeBSD.org>2003-10-03 10:56:33 +0000
commite4769a39336d4c90e6fab665c7ce29df3aca4352 (patch)
tree64bab27f9f64f693ff2d10cac0173be8abcedd6c /net/lft
parent5e61406378e39821dfd44ca17f0f9e7feac9bbf0 (diff)
downloadports-e4769a39336d4c90e6fab665c7ce29df3aca4352.tar.gz
ports-e4769a39336d4c90e6fab665c7ce29df3aca4352.zip
Fix patches due to missing atol().
PR: 56063 (originallY) Submitted by: Peter Pentchev <roam@ringlet.net>
Notes
Notes: svn path=/head/; revision=90088
Diffstat (limited to 'net/lft')
-rw-r--r--net/lft/files/patch-lft.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/lft/files/patch-lft.c b/net/lft/files/patch-lft.c
index b921d6de9db2..2479f0a4509a 100644
--- a/net/lft/files/patch-lft.c
+++ b/net/lft/files/patch-lft.c
@@ -54,7 +54,7 @@
break;
case 'q':
- seq_start = atol (optarg);
-+ seq_start = atoll (optarg);
++ seq_start = strtoll (optarg, NULL, 10);
break;
case 'w':
win_len = atoi(optarg);