no strcpy() allowed in BSD code

This commit is contained in:
mirabilos
2017-03-26 00:05:25 +01:00
parent de3d3aa5d2
commit 62a5331aee
2 changed files with 11 additions and 7 deletions

2
exec.c
View File

@ -1325,7 +1325,7 @@ search_path(const char *name, const char *lpath,
#ifndef __OS2__
return (name);
#else
return real_exec_name(name);
return (real_exec_name(name));
#endif
}
goto search_path_err;