lwIP - A Lightweight TCP/IP stack - Bugs: bug #63105, makefsdata: -ssi option broken
You are not allowed to post comments on this tracker with your current authentication level.
bug #63105: makefsdata: -ssi option broken
Submitter: | Timo Kokkonen <tjko> | ||
Submitted: | Sun 25 Sep 2022 07:11:14 PM UTC | ||
Category: | apps | Severity: | 3 - Normal |
Item Group: | Faulty Behaviour | Status: | None |
Privacy: | Public | Assigned to: | None |
Open/Closed: | Open | Planned Release: | None |
lwIP version: | 2.1.3 |
No files currently attached
Depends on the following items: None found
Items that depend on this one: None found
Carbon-Copy List
There are 0 votes so far. Votes easily highlight which items people would like to see resolved in priority, independently of the priority of the item set by tracker managers.
No changes have been made to this item
Option -ssi does not work. This is due to checkSsiByFilelist() function never returning anything but 0...
Following seem to fix the problem:
--- makefsdata.c.orig 2022-09-11 14:26:22.946235452 -0700
+++ makefsdata.c 2022-09-25 12:00:01.847969958 -0700
@@ -882,7 +882,7 @@ static int checkSsiByFilelist(const char
ssi_file_lines = lines;
ssi_file_num_lines = l;
}
- return 0;
+ return 1;
}
static int is_ssi_file(const char *filename)