Deleted Added
full compact
defines.h (197679) defines.h (202213)
1/*
2 * Copyright (c) 1999-2003 Damien Miller. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

--- 660 unchanged lines hidden (view full) ---

669
670/* The login() library function in libutil is first choice */
671#if defined(HAVE_LOGIN) && !defined(DISABLE_LOGIN)
672# define USE_LOGIN
673
674#else
675/* Simply select your favourite login types. */
676/* Can't do if-else because some systems use several... <sigh> */
1/*
2 * Copyright (c) 1999-2003 Damien Miller. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

--- 660 unchanged lines hidden (view full) ---

669
670/* The login() library function in libutil is first choice */
671#if defined(HAVE_LOGIN) && !defined(DISABLE_LOGIN)
672# define USE_LOGIN
673
674#else
675/* Simply select your favourite login types. */
676/* Can't do if-else because some systems use several... <sigh> */
677# if defined(UTMPX_FILE) && !defined(DISABLE_UTMPX)
677# if !defined(DISABLE_UTMPX)
678# define USE_UTMPX
679# endif
680# if defined(UTMP_FILE) && !defined(DISABLE_UTMP)
681# define USE_UTMP
682# endif
683# if defined(WTMPX_FILE) && !defined(DISABLE_WTMPX)
684# define USE_WTMPX
685# endif

--- 71 unchanged lines hidden ---
678# define USE_UTMPX
679# endif
680# if defined(UTMP_FILE) && !defined(DISABLE_UTMP)
681# define USE_UTMP
682# endif
683# if defined(WTMPX_FILE) && !defined(DISABLE_WTMPX)
684# define USE_WTMPX
685# endif

--- 71 unchanged lines hidden ---