From 84627f7995af6260e56f734a6d39ea1a85274c34 Mon Sep 17 00:00:00 2001 From: Jim McDonough Date: Wed, 19 Mar 2003 19:32:51 +0000 Subject: replace pstrcpy (This used to be commit c6eb950b6879d7566ded33dd6a3853cf2d5310db) --- source3/nmbd/nmbd_elections.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/nmbd/nmbd_elections.c b/source3/nmbd/nmbd_elections.c index 976abbed25..f09c37eedc 100644 --- a/source3/nmbd/nmbd_elections.c +++ b/source3/nmbd/nmbd_elections.c @@ -47,7 +47,7 @@ static void send_election_dgram(struct subnet_record *subrec, const char *workgr SIVAL(p,1,criterion); SIVAL(p,5,timeup*1000); /* ms - Despite what the spec says. */ p += 13; - pstrcpy(p,server_name); + safe_strcpy(p, server_name, sizeof(outbuf) - 1 - (p-outbuf)); strupper(p); p = skip_string(p,1); -- cgit