diff options
author | edwin <edwin@FreeBSD.org> | 2003-10-03 18:56:33 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-10-03 18:56:33 +0800 |
commit | 3218135cb5cd35f287be7ae024776637e1bf714f (patch) | |
tree | 5cf446371b7e4f79723117a1cff1011fc014eb2b /net | |
parent | d2985c634cc10f73a985b1821429dea084034d9d (diff) | |
download | freebsd-ports-gnome-3218135cb5cd35f287be7ae024776637e1bf714f.tar.gz freebsd-ports-gnome-3218135cb5cd35f287be7ae024776637e1bf714f.tar.zst freebsd-ports-gnome-3218135cb5cd35f287be7ae024776637e1bf714f.zip |
Fix patches due to missing atol().
PR: 56063 (originallY)
Submitted by: Peter Pentchev <roam@ringlet.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/lft/files/patch-lft.c | 2 |
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); |