1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-17 10:26:15 +00:00

Fix error returning address of local array

This commit is contained in:
Andrey A. Chernov 1995-05-14 19:14:53 +00:00
parent 2ea29df013
commit e7d6343ec1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=8518

View File

@ -16,7 +16,8 @@ Commercial usage is also possible with participation of it's author.
char * FtpPwd(FTP * con)
{
String tmp,tmp1;
String tmp;
static String tmp1;
int i;
if ( FtpSendMessage(con,"PWD") == QUIT )