Comments typically go immediately above the code to implement the
described behaviour. Putting it below confused me for a moment.
return EXIT_FAILURE;
}
+ /* We assume that gettys on virtual terminals are
+ * started via manual configuration and do this magic
+ * only for non-VC terminals. */
+
if (isempty(tty) || tty_is_vc(tty))
continue;
if (verify_tty(tty) < 0)
continue;
- /* We assume that gettys on virtual terminals are
- * started via manual configuration and do this magic
- * only for non-VC terminals. */
-
if (add_serial_getty(tty) < 0)
return EXIT_FAILURE;
}