public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Jonatan Schlag <jonatan.schlag@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 1/2] setup: Reformat the C Code
Date: Tue, 24 Sep 2024 10:34:32 +0200	[thread overview]
Message-ID: <20240924083433.48085-1-jonatan.schlag@ipfire.org> (raw)

[-- 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


             reply	other threads:[~2024-09-24  8:34 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-09-24  8:34 Jonatan Schlag [this message]
2024-09-24  8:34 ` [PATCH 2/2] setup: Copy the description of a mac without "" Jonatan Schlag

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240924083433.48085-1-jonatan.schlag@ipfire.org \
    --to=jonatan.schlag@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox