Package: util-linux Version: 2.27.1-2 Severity: wishlist Dear Maintainer(s),
just a little nitpick regarding the fix of #791511 and the use of sed:
this line
if sed '3!d' /etc/adjtime | grep -q '^UTC$'; then
can be done without calling grep like
if [ `sed -n '3!d; /^UTC$/p' /etc/adjtime` ]; then
Regards,
Jörg-Volker.

