mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Fix error returning address of local array
This commit is contained in:
parent
2ea29df013
commit
e7d6343ec1
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=8518
1 changed files with 2 additions and 1 deletions
|
@ -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 )
|
||||
|
|
Loading…
Reference in a new issue