static int login(int ptm) {
#if defined(USE_UTEMPTER)
int result = utempter_add_record(ptm, NULL);
- /* Exit value of utempter_*() is not correct on all systems, e.g.
- * FreeBSD() always returns 0. Checking the utmpx database manually is
- * difficult because we don't know the exact values for ut_id and ut_line,
- * therefore we only check the return value on systems known to return a
- * useful value. */
+ /* Exit value of utempter_*() is not correct on all systems, e.g. FreeBSD
+ * always returns 0. Checking the utmpx database manually is difficult
+ * because we don't know the exact values for ut_id and ut_line, therefore
+ * we only check the return value on systems known to return a useful
+ * value. */
# ifndef __linux
result = 1;
# endif