diff options
author | ache <ache@FreeBSD.org> | 1997-03-02 21:36:17 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1997-03-02 21:36:17 +0000 |
commit | 099f4dd08d1b65b2700f944d35935d805dfb68d2 (patch) | |
tree | 60bcbe18f55efd42088cbdc8d893d61f4e0464dc /usr.sbin/pw | |
parent | fab230ff1534aac812b7c51f041efa0d0be82c59 (diff) | |
download | FreeBSD-src-099f4dd08d1b65b2700f944d35935d805dfb68d2.zip FreeBSD-src-099f4dd08d1b65b2700f944d35935d805dfb68d2.tar.gz |
Fix MAXLOGNAME usage, the code has wrong assumption that
it must be NUL terminated
Diffstat (limited to 'usr.sbin/pw')
-rw-r--r-- | usr.sbin/pw/pw_user.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/pw/pw_user.c b/usr.sbin/pw/pw_user.c index aeff6bb..faebb30 100644 --- a/usr.sbin/pw/pw_user.c +++ b/usr.sbin/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 <unistd.h> @@ -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); |