1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

- Update to 0.5.2

This commit is contained in:
Pav Lucistnik 2005-10-04 23:13:14 +00:00
parent 0162bc357f
commit 2f6ecd246f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=144224
3 changed files with 3 additions and 17 deletions

View File

@ -6,8 +6,7 @@
#
PORTNAME= xtermset
PORTVERSION= 0.5.1
PORTREVISION= 1
PORTVERSION= 0.5.2
CATEGORIES= x11
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= clts

View File

@ -1,2 +1,2 @@
MD5 (xtermset-0.5.1.tar.gz) = 6191a21271dd06b49a20ad9fb6170be4
SIZE (xtermset-0.5.1.tar.gz) = 41929
MD5 (xtermset-0.5.2.tar.gz) = 36c9273884ed74e8b872adb3622d50d9
SIZE (xtermset-0.5.2.tar.gz) = 46328

View File

@ -1,13 +0,0 @@
--- src/arguments.c 2000/12/20 15:54:27 1.2
+++ src/arguments.c 2001/04/14 16:21:52
@@ -62,8 +62,9 @@
current = first;
while(current!=NULL) {
+ argument *next = current->next;
free(current);
- current=current->next;
+ current = next;
}
current = NULL;