mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Fix error returning address of local array
This commit is contained in:
parent
2ea29df013
commit
e7d6343ec1
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