diff options
-rw-r--r-- | source3/nmbd/nmbd_elections.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |