Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Allow spaces in identifiers |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
91f9fc3e38b28539fb8ae418c460bc18 |
User & Date: | viric 2013-03-15 18:30:17 |
Context
2013-03-15
| ||
18:39 | Fixing a spurious "Wrong feed version" in feedinfo, for just received feeds. check-in: 539a77f2df user: viric tags: trunk | |
18:30 | Allow spaces in identifiers check-in: 91f9fc3e38 user: viric tags: trunk | |
18:00 | Updating the Makefile option for podofo, to allow "make USE_PODOFO=0" check-in: d7e30f2a70 user: viric tags: trunk | |
Changes
Changes to offrss.c.
︙ | ︙ | |||
424 425 426 427 428 429 430 | feed_urls[nfeed_urls].filename = 0; nfeed_urls += 1; } else { /* Split the line in name and url */ | | | 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 | feed_urls[nfeed_urls].filename = 0; nfeed_urls += 1; } else { /* Split the line in name and url */ space = strrchr(line, ' '); if (space == NULL) { fprintf(stderr, "Cannot parse the line %i as \"id URL\"\n", numline); exit(-1); } *space = '\0'; name = line; |
︙ | ︙ |