summaryrefslogtreecommitdiffstats
path: root/pw
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1997-03-02 21:36:17 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1997-03-02 21:36:17 +0000
commit4d71529927c4e15e123d70cd125d6c8b6b566711 (patch)
tree8010a305154956acb62587ae24d5a46288403679 /pw
parentd02fc8ee49f041934e70818685eaa60366006846 (diff)
downloadpw-darwin-4d71529927c4e15e123d70cd125d6c8b6b566711.tar.gz
pw-darwin-4d71529927c4e15e123d70cd125d6c8b6b566711.tar.zst
pw-darwin-4d71529927c4e15e123d70cd125d6c8b6b566711.zip
Fix MAXLOGNAME usage, the code has wrong assumption that
it must be NUL terminated
Diffstat (limited to 'pw')
-rw-r--r--pw/pw_user.c6
1 files changed, 3 insertions, 3 deletions
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 <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);