From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag 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 Message-ID: <20240924083433.48085-2-jonatan.schlag@ipfire.org> In-Reply-To: <20240924083433.48085-1-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7133308399099823622==" List-Id: --===============7133308399099823622== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable This creates problems as the "" are invalid characters which our new bash readhash refuses to accepts. Signed-off-by: Jonatan Schlag --- 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)) =3D=3D 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)) =3D=3D = 0 ) { sprintf(nics[count].macaddr, "%s", temp_line+strlen(_network_hwaddr)= ); --=20 2.39.5 --===============7133308399099823622==--