Fix .skippyrc-parsing (bump PORTREVISION)
PR: ports/68705 Submitted by: Leland Wang Approved by: maintainer
This commit is contained in:
parent
bd2b948958
commit
70c73c78e2
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=113461
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME= skippy
|
||||
PORTVERSION= 0.5.0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= x11-wm
|
||||
MASTER_SITES= http://thegraveyard.org/files/
|
||||
|
||||
|
22
x11-wm/skippy/files/patch-config.c
Normal file
22
x11-wm/skippy/files/patch-config.c
Normal file
@ -0,0 +1,22 @@
|
||||
--- config.c.orig Mon Jul 5 22:36:39 2004
|
||||
+++ config.c Mon Jul 5 23:32:25 2004
|
||||
@@ -72,9 +72,9 @@
|
||||
int ix = 0, l_ix = 0;
|
||||
dlist *new_config = 0;
|
||||
|
||||
- regcomp(&re_section, "^[[:space:]]*\\[[[:space:]]*([[:alnum:]]*?)[[:space:]]*\\][[:space:]]*$", REG_EXTENDED);
|
||||
+ regcomp(&re_section, "^[[:space:]]*\\[[[:space:]]*([[:alnum:]]*)[[:space:]]*\\][[:space:]]*$", REG_EXTENDED);
|
||||
regcomp(&re_empty, "^[[:space:]]*#|^[[:space:]]*$", REG_EXTENDED);
|
||||
- regcomp(&re_entry, "^[[:space:]]*([[:alnum:]]+)[[:space:]]*=[[:space:]]*(.*?)[[:space:]]*$", REG_EXTENDED);
|
||||
+ regcomp(&re_entry, "^[[:space:]]*([[:alnum:]]+)[[:space:]]*=[[:space:]]*(.*)[[:space:]]*$", REG_EXTENDED);
|
||||
|
||||
while(1)
|
||||
{
|
||||
@@ -148,6 +148,7 @@
|
||||
fclose(fin);
|
||||
return 0;
|
||||
}
|
||||
+ data[flen] = '\0';
|
||||
|
||||
fclose(fin);
|
||||
|
Loading…
Reference in New Issue
Block a user