[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[lwip-devel] [bug #63105] makefsdata: -ssi option broken
From: |
Timo Kokkonen |
Subject: |
[lwip-devel] [bug #63105] makefsdata: -ssi option broken |
Date: |
Sun, 25 Sep 2022 15:11:15 -0400 (EDT) |
URL:
<https://savannah.nongnu.org/bugs/?63105>
Summary: makefsdata: -ssi option broken
Project: lwIP - A Lightweight TCP/IP stack
Submitter: 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
Discussion Lock: Any
Planned Release: None
lwIP version: 2.1.3
_______________________________________________________
Follow-up Comments:
-------------------------------------------------------
Date: Sun 25 Sep 2022 07:11:14 PM UTC By: Timo Kokkonen <tjko>
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)
_______________________________________________________
Reply to this item at:
<https://savannah.nongnu.org/bugs/?63105>
_______________________________________________
Message sent via Savannah
https://savannah.nongnu.org/
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [lwip-devel] [bug #63105] makefsdata: -ssi option broken,
Timo Kokkonen <=