From: Jonatan Schlag <jonatan.schlag@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 2/2] setup: Copy the description of a mac without ""
Date: Tue, 24 Sep 2024 10:34:33 +0200 [thread overview]
Message-ID: <20240924083433.48085-2-jonatan.schlag@ipfire.org> (raw)
In-Reply-To: <20240924083433.48085-1-jonatan.schlag@ipfire.org>
[-- 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
prev parent 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 [PATCH 1/2] setup: Reformat the C Code Jonatan Schlag
2024-09-24 8:34 ` Jonatan Schlag [this message]
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-2-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