The sentence wasn't correct English language, let's fix that. More
importantly: if the mount options are empty we'd display "(null)" here.
Fix that. (And they can be empty IRL, see CI results)
if (r < 0)
return r;
if (r == 0) {
- log_info("Remounting '%s' read-only in with options '%s'.", m->path, m->remount_options);
+ log_info("Remounting '%s' read-only with options '%s'.", m->path, strna(m->remount_options));
/* Start the mount operation here in the child */
r = mount(NULL, m->path, NULL, m->remount_flags, m->remount_options);