net/adasockets: Upgrade version 1.8.11 => 1.9

This commit is contained in:
John Marino 2014-08-07 20:29:49 +00:00
parent d0cfa3d1e2
commit d26093a6d9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=364320
3 changed files with 3 additions and 21 deletions

View File

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= adasockets
PORTVERSION= 1.8.11
PORTREISION= 1
PORTVERSION= 1.9
CATEGORIES= net
MASTER_SITES= http://www.rfc1149.net/download/adasockets/

View File

@ -1,2 +1,2 @@
SHA256 (adasockets-1.8.11.tar.gz) = 65f9dccb3a8c46a47e3f53eb42b4f3329a699ab410b60436d583575dd2bbfef6
SIZE (adasockets-1.8.11.tar.gz) = 751137
SHA256 (adasockets-1.9.tar.gz) = 351c42f2604fd39cf2191053350e154e8078d33456c6bee51d6852248bd66052
SIZE (adasockets-1.9.tar.gz) = 754840

View File

@ -1,17 +0,0 @@
--- src/sockets-utils.adb.orig 2012-04-26 14:54:46.000000000 +0000
+++ src/sockets-utils.adb
@@ -73,10 +73,10 @@ package body Sockets.Utils is
declare
Current : Character renames Something (Index);
begin
- if (Current < '0'
- or else Current > '9')
- and then Current /= '.' then
- return False;
+ if Current < '0' or else Current > '9' then
+ if Current /= '.' then
+ return False;
+ end if;
end if;
end;
end loop;