public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH 1/2] setup: Reformat the C Code
@ 2024-09-24  8:34 Jonatan Schlag
  2024-09-24  8:34 ` [PATCH 2/2] setup: Copy the description of a mac without "" Jonatan Schlag
  0 siblings, 1 reply; 2+ messages in thread
From: Jonatan Schlag @ 2024-09-24  8:34 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1577 bytes --]

Otherwise the line wraps at position where
it does not make any sense.

Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
 src/setup/netstuff.c | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/src/setup/netstuff.c b/src/setup/netstuff.c
index 60e27242f..ec4c31513 100644
--- a/src/setup/netstuff.c
+++ b/src/setup/netstuff.c
@@ -602,9 +602,15 @@ int scan_network_cards(void)
 		while (fgets(temp_line, STRING_SIZE, fp) != NULL)
 		{
 			temp_line[strlen(temp_line) -1] = 0;
-			if ( strncmp(temp_line, _driver,         strlen(_driver))         ==  0 ) sprintf(nics[count].driver,      "%s", temp_line+strlen(_driver));
-			if ( strncmp(temp_line, _desc,           strlen(_desc))           ==  0 ) sprintf(nics[count].description, "%s", temp_line+strlen(_desc));
-			if ( strncmp(temp_line, _network_hwaddr, strlen(_network_hwaddr)) ==  0 ) sprintf(nics[count].macaddr,     "%s", temp_line+strlen(_network_hwaddr));
+			if ( strncmp(temp_line, _driver, strlen(_driver)) ==  0 ) {
+				sprintf(nics[count].driver, "%s", temp_line+strlen(_driver));
+			}
+			if ( strncmp(temp_line, _desc, strlen(_desc)) ==  0 ) {
+				sprintf(nics[count].description, "%s", temp_line+strlen(_desc));
+			}
+			if ( strncmp(temp_line, _network_hwaddr, strlen(_network_hwaddr)) ==  0 ) {
+				sprintf(nics[count].macaddr,     "%s", temp_line+strlen(_network_hwaddr));
+			}
 			if (strlen(nics[count].macaddr) > 15 ) {
 				sprintf(nics[count].nic, "%s", find_nic4mac(nics[count].macaddr));
 				count++;
-- 
2.39.5


^ permalink raw reply	[flat|nested] 2+ messages in thread

* [PATCH 2/2] setup: Copy the description of a mac without ""
  2024-09-24  8:34 [PATCH 1/2] setup: Reformat the C Code Jonatan Schlag
@ 2024-09-24  8:34 ` Jonatan Schlag
  0 siblings, 0 replies; 2+ messages in thread
From: Jonatan Schlag @ 2024-09-24  8:34 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 956 bytes --]

This creates problems as the "" are invalid characters which our
new bash readhash refuses to accepts.

Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
 src/setup/netstuff.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/setup/netstuff.c b/src/setup/netstuff.c
index ec4c31513..5967a7882 100644
--- a/src/setup/netstuff.c
+++ b/src/setup/netstuff.c
@@ -606,7 +606,7 @@ int scan_network_cards(void)
 				sprintf(nics[count].driver, "%s", temp_line+strlen(_driver));
 			}
 			if ( strncmp(temp_line, _desc, strlen(_desc)) ==  0 ) {
-				sprintf(nics[count].description, "%s", temp_line+strlen(_desc));
+				snprintf(nics[count].description, strlen(temp_line) - strlen(_desc) - 1,"%s", temp_line+strlen(_desc)+1 );
 			}
 			if ( strncmp(temp_line, _network_hwaddr, strlen(_network_hwaddr)) ==  0 ) {
 				sprintf(nics[count].macaddr,     "%s", temp_line+strlen(_network_hwaddr));
-- 
2.39.5


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-09-24  8:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-09-24  8:34 [PATCH 1/2] setup: Reformat the C Code Jonatan Schlag
2024-09-24  8:34 ` [PATCH 2/2] setup: Copy the description of a mac without "" Jonatan Schlag

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox