Skip to content
Snippets Groups Projects
Commit 50df3df6 authored by Maciej Żenczykowski's avatar Maciej Żenczykowski Committed by Automerger Merge Worker
Browse files

Merge "Fix BpfLoaderRcUtils to support IOS_8859_1" into main am: 742c476d

parents bd975a9e 742c476d
No related branches found
No related tags found
No related merge requests found
......@@ -87,7 +87,7 @@ public class BpfLoaderRcUtils {
List<String> contents = new ArrayList<>();
boolean bpfSectionFound = false;
try (BufferedReader br = new BufferedReader(
new InputStreamReader(inputStream, StandardCharsets.UTF_8))) {
new InputStreamReader(inputStream, StandardCharsets.ISO_8859_1))) {
String line;
while ((line = br.readLine()) != null) {
line = line.trim();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment