diff options
Diffstat (limited to 'ext/File/Glob/bsd_glob.c')
-rw-r--r-- | ext/File/Glob/bsd_glob.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/File/Glob/bsd_glob.c b/ext/File/Glob/bsd_glob.c index 78a8c647ec..c1dbd2c093 100644 --- a/ext/File/Glob/bsd_glob.c +++ b/ext/File/Glob/bsd_glob.c @@ -1131,9 +1131,9 @@ g_opendir(register Char *str, glob_t *pglob) if (!*str) { #ifdef MACOS_TRADITIONAL - strcpy(buf, ":"); + my_strlcpy(buf, ":", sizeof(buf)); #else - strcpy(buf, "."); + my_strlcpy(buf, ".", sizeof(buf)); #endif } else { if (g_Ctoc(str, buf, sizeof(buf))) |