bump sizes

This commit is contained in:
christos 2019-10-15 18:29:32 +00:00
parent 384c9fdd8d
commit 3a70c5972e
2 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: extern.h,v 1.64 2018/06/23 07:21:00 gson Exp $ */
/* $NetBSD: extern.h,v 1.65 2019/10/15 18:29:32 christos Exp $ */
/*-
* Copyright (c) 1992, 1993
@ -330,7 +330,7 @@ GLOBAL char proctitle[BUFSIZ]; /* initial part of title */
GLOBAL struct passwd *pw;
GLOBAL int quietmessages;
GLOBAL char remotehost[MAXHOSTNAMELEN+1];
GLOBAL char remoteloghost[2 * MAXHOSTNAMELEN+1];
GLOBAL char remoteloghost[2 * MAXHOSTNAMELEN + 4];
GLOBAL off_t restart_point;
GLOBAL char tmpline[FTP_BUFLEN];
GLOBAL int type;

View File

@ -1,4 +1,4 @@
/* $NetBSD: ftpd.c,v 1.204 2018/04/28 13:38:00 riastradh Exp $ */
/* $NetBSD: ftpd.c,v 1.205 2019/10/15 18:29:32 christos Exp $ */
/*
* Copyright (c) 1997-2009 The NetBSD Foundation, Inc.
@ -97,7 +97,7 @@ __COPYRIGHT("@(#) Copyright (c) 1985, 1988, 1990, 1992, 1993, 1994\
#if 0
static char sccsid[] = "@(#)ftpd.c 8.5 (Berkeley) 4/28/95";
#else
__RCSID("$NetBSD: ftpd.c,v 1.204 2018/04/28 13:38:00 riastradh Exp $");
__RCSID("$NetBSD: ftpd.c,v 1.205 2019/10/15 18:29:32 christos Exp $");
#endif
#endif /* not lint */
@ -2863,7 +2863,7 @@ logremotehost(struct sockinet *who)
{
#if defined(HAVE_SOCKADDR_SNPRINTF)
char abuf[BUFSIZ];
char abuf[MAXHOSTNAMELEN];
#endif
struct sockaddr *sa = (struct sockaddr *)&who->si_su;