From bb4c2088767633be563dd05c2180b4194e840a6b Mon Sep 17 00:00:00 2001 From: guido Date: Mon, 10 Mar 1997 19:52:12 +0000 Subject: Fix buffer overflow --- bin/date/netdate.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'bin/date') diff --git a/bin/date/netdate.c b/bin/date/netdate.c index 88d914c..4ff5e2b 100644 --- a/bin/date/netdate.c +++ b/bin/date/netdate.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: netdate.c,v 1.6 1997/02/22 14:02:35 peter Exp $ */ #ifndef lint @@ -116,7 +116,8 @@ netsettime(tval) warn("gethostname"); goto bad; } - (void)strncpy(msg.tsp_name, hostname, sizeof(hostname)); + (void)strncpy(msg.tsp_name, hostname, sizeof(msg.tsp_name)); + msg.tsp_name[sizeof(msg.tsp_name) - 1] = '\0'; msg.tsp_seq = htons((u_short)0); msg.tsp_time.tv_sec = htonl((u_long)tval); msg.tsp_time.tv_usec = htonl((u_long)0); -- cgit v1.1