Fix scripting error in an ftp btest

This commit is contained in:
Jon Siwek 2019-12-26 08:14:09 -08:00
parent aa0b521597
commit 10473d58a9

View file

@ -6,6 +6,9 @@
# Make sure we're tracking the CWD correctly.
event ftp_reply(c: connection, code: count, msg: string, cont_resp: bool) &priority=10
{
if ( ! c?$ftp )
return;
print "CWD", c$ftp$cwd;
}