Skip to content
This repository has been archived by the owner on Apr 14, 2024. It is now read-only.

Commit

Permalink
Suggest disabling intelligent import if pcap diff
Browse files Browse the repository at this point in the history
  • Loading branch information
pstavirs committed Feb 2, 2024
1 parent b3ac5f8 commit 318fe12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/pcapfileformat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ bool PcapFileFormat::open(const QString fileName,
diffFile.close();
if (diffFile.size())
{
error.append(tr("<p>There is a diff between the original and imported streams. See details to review the diff.</p><p>Why a diff? See <a href='%1'>possible reasons</a>.</p>\n\n\n\n").arg("https://jump.ostinato.org/pcapdiff"));
error.append(tr("<p>There is a diff between the original and imported streams. See details to review the diff.</p><p>&#x1F4A1; If you don't need to edit packets, you can retry the import and uncheck the Intelligent Import option.</p><p>Why a diff? See <a href='%1'>possible reasons</a>.</p>\n\n\n\n").arg("https://jump.ostinato.org/pcapdiff"));
diffFile.open();
diffFile.seek(0);
error.append(QString(diffFile.readAll()));
Expand Down

0 comments on commit 318fe12

Please sign in to comment.