Overview
Comment: | Fixed typo. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
f0685dfb27464eb506b6019219aea782 |
User & Date: | rkeene on 2004-10-29 01:41:26 |
Other Links: | manifest | tags |
Context
2004-10-29
| ||
03:01 | Updated to remove PRINTERR and PRINTERR_D (Mac OS X's c preprocessor doesn't handle variadic macros) Updated strtoull.c to work. Added config.guess/config.sub (needed for determining SHLIBEXT) A few misc changes. libconfig 0.0.7 check-in: 2eca7c583b user: rkeene tags: 0.0.7, trunk | |
01:41 | Fixed typo. check-in: f0685dfb27 user: rkeene tags: trunk | |
00:35 | Fixed OBJLIBS to create a SHOBJLIBS variable that has the correct format. libconfig version 0.0.5 check-in: eacf820f19 user: rkeene tags: trunk | |
Changes
Modified conf_section.c from [cc641c4b63] to [0c4194df01].
︙ | ︙ | |||
106 107 108 109 110 111 112 | PRINTERR_D("Ignoring line (because ignored section): %s", linebuf); continue; } /* Find the command and the data in the line. */ cmdend = sep = strpbrk(linebuf_ptr, "="); if (sep == NULL) { | | | 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | PRINTERR_D("Ignoring line (because ignored section): %s", linebuf); continue; } /* Find the command and the data in the line. */ cmdend = sep = strpbrk(linebuf_ptr, "="); if (sep == NULL) { PRINTERR_D("Invalid line: \"%s\"", linebuf); continue; } /* Delete space at the end of the command. */ *cmdend--; /* It currently derefs to the seperator.. */ while (*cmdend <= ' ') { *cmdend = '\0'; |
︙ | ︙ |