diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-08-24 13:15:00 +0300 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-08-24 13:15:00 +0300 |
commit | 455a635080a1c1c4b164af3060836f0d8c1b3c1c (patch) | |
tree | bc77c492e9b7187d8b277d2a1cd024902c8ae3eb /src/gmcerts.c | |
parent | fbf36dfbf77701d647f0133f1532ebc42eb05e32 (diff) |
Updated for the_Foundation API changes
Diffstat (limited to 'src/gmcerts.c')
-rw-r--r-- | src/gmcerts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gmcerts.c b/src/gmcerts.c index b8fb6a7f..e13e9a8d 100644 --- a/src/gmcerts.c +++ b/src/gmcerts.c | |||
@@ -264,7 +264,7 @@ static void load_GmCerts_(iGmCerts *d) { | |||
264 | iRegExp * pattern = new_RegExp("([^\\s]+) ([0-9]+) ([a-z0-9]+)", 0); | 264 | iRegExp * pattern = new_RegExp("([^\\s]+) ([0-9]+) ([a-z0-9]+)", 0); |
265 | const iRangecc src = range_Block(collect_Block(readAll_File(f))); | 265 | const iRangecc src = range_Block(collect_Block(readAll_File(f))); |
266 | iRangecc line = iNullRange; | 266 | iRangecc line = iNullRange; |
267 | while (nextSplit_Rangecc(&src, "\n", &line)) { | 267 | while (nextSplit_Rangecc(src, "\n", &line)) { |
268 | iRegExpMatch m; | 268 | iRegExpMatch m; |
269 | init_RegExpMatch(&m); | 269 | init_RegExpMatch(&m); |
270 | if (matchRange_RegExp(pattern, line, &m)) { | 270 | if (matchRange_RegExp(pattern, line, &m)) { |