diff options
author | Matt Wilson <msw@redhat.com> | 2001-04-04 18:32:48 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-04-04 18:32:48 +0000 |
commit | e94490d48b995bc2e0e3620105b7329241916fd5 (patch) | |
tree | 2ff9c190565e6ef4bab5977b281cec2723cd402d /utils/trimpcitable | |
parent | 594917cd2e62b40db0163f7a0b0681a59143c363 (diff) | |
download | anaconda-e94490d48b995bc2e0e3620105b7329241916fd5.tar.gz anaconda-e94490d48b995bc2e0e3620105b7329241916fd5.tar.xz anaconda-e94490d48b995bc2e0e3620105b7329241916fd5.zip |
don't drop the unknown entries from the pcitable (#32082)
Diffstat (limited to 'utils/trimpcitable')
-rwxr-xr-x | utils/trimpcitable | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/trimpcitable b/utils/trimpcitable index 76ab26a4f..1aac47376 100755 --- a/utils/trimpcitable +++ b/utils/trimpcitable @@ -14,6 +14,8 @@ while (<STDIN>) { print "$_\n"; } elsif ($a[4] =~ /\"ignore\"/) { print "$_\n"; + } elsif ($a[4] =~ /\"unknown\"/) { + print "$_\n"; } } |