# HG changeset patch # User Sam Lantinga # Date 1147060191 0 # Node ID ed39aa7383ead8f6560de4645f1e3345aaec9cd8 # Parent 5572e4204f363b570cc4a2d7bf9fc3b19bcf7c1d SDL_strncpy doesn't exist diff -r 5572e4204f36 -r ed39aa7383ea src/video/fbcon/SDL_fbevents.c --- a/src/video/fbcon/SDL_fbevents.c Mon May 08 02:09:34 2006 +0000 +++ b/src/video/fbcon/SDL_fbevents.c Mon May 08 03:49:51 2006 +0000 @@ -400,7 +400,7 @@ t = arg + arglen; s = SDL_strchr(t, ' '); if (s) *s = 0; - SDL_strncpy(raw_proto, t, SDL_arraysize(raw_proto)); + SDL_strlcpy(raw_proto, t, SDL_arraysize(raw_proto)); if (s) *s = ' '; } if ( SDL_strncmp(arg, "-R", 2) == 0 ) { @@ -409,7 +409,7 @@ t = arg + 2; s = SDL_strchr(t, ' '); if (s) *s = 0; - SDL_strncpy(repeat_proto, t, SDL_arraysize(repeat_proto)); + SDL_strlcpy(repeat_proto, t, SDL_arraysize(repeat_proto)); if (s) *s = ' '; } len -= arglen;