logs-show: show messages for all unit types in systemctl status

I can't find a reason why we shouldn't try to output messages for other
unit types than .service, .socket, .mount and .swap as well. It's probably
a leftover from before we started logging UNIT= from inside PID 1.
This commit is contained in:
Mirco Tischler 2013-02-04 15:13:24 +01:00 committed by Zbigniew Jędrzejewski-Szmek
parent f904546894
commit a4b88c1ecb

View file

@ -886,12 +886,6 @@ int show_journal_by_unit(
assert(mode < _OUTPUT_MODE_MAX);
assert(unit);
if (!endswith(unit, ".service") &&
!endswith(unit, ".socket") &&
!endswith(unit, ".mount") &&
!endswith(unit, ".swap"))
return 0;
if (how_many <= 0)
return 0;
@ -962,11 +956,6 @@ int show_journal_by_user_unit(
assert(mode < _OUTPUT_MODE_MAX);
assert(unit);
if (!endswith(unit, ".service") &&
!endswith(unit, ".socket"))
return 0;
if (how_many <= 0)
return 0;