Use correct path for login on GNO.

This commit is contained in:
Stephen Heumann 2016-01-07 20:07:53 -06:00
parent 2de9b6ebc3
commit e761e0fc48

View File

@ -39,7 +39,11 @@
# include <paths.h>
# ifndef _PATH_LOGIN
# define _PATH_LOGIN "/usr/bin/login"
# ifdef __GNO__
# define _PATH_LOGIN "/usr/sbin/login"
# else
# define _PATH_LOGIN "/usr/bin/login"
# endif
# endif
#else