From fe4c2973db9adb7c66b5852e36b172739d5b9b79 Mon Sep 17 00:00:00 2001 From: "Andrey A. Chernov" Date: Sun, 2 Mar 1997 21:36:17 +0000 Subject: Fix MAXLOGNAME usage, the code has wrong assumption that it must be NUL terminated --- pw/pw_user.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pw/pw_user.c') diff --git a/pw/pw_user.c b/pw/pw_user.c index aeff6bb..faebb30 100644 --- a/pw/pw_user.c +++ b/pw/pw_user.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: pw_user.c,v 1.15 1997/02/22 16:12:30 peter Exp $ */ #include @@ -44,10 +44,10 @@ #include "bitmap.h" #include "pwupd.h" -#if (MAXLOGNAME-1) > UT_NAMESIZE +#if MAXLOGNAME > UT_NAMESIZE #define LOGNAMESIZE UT_NAMESIZE #else -#define LOGNAMESIZE (MAXLOGNAME-1) +#define LOGNAMESIZE MAXLOGNAME #endif static int print_user(struct passwd * pwd, int pretty); -- cgit v1.2.3-56-ge451