From: Amos Jeffries Date: Fri, 25 Nov 2011 11:05:03 +0000 (+1300) Subject: Fix segfault in %F error page token X-Git-Tag: BumpSslServerFirst.take05~12^2~170 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c6b684ddf0dfd05df2e173f9ff487719191c7382;p=thirdparty%2Fsquid.git Fix segfault in %F error page token --- diff --git a/src/errorpage.cc b/src/errorpage.cc index c4b3e83c66..22391ce338 100644 --- a/src/errorpage.cc +++ b/src/errorpage.cc @@ -858,7 +858,7 @@ ErrorState::Convert(char token, bool building_deny_info_url, bool allowRecursion case 'F': if (building_deny_info_url) break; /* FTP REPLY LINE */ - if (ftp.request) + if (ftp.reply) p = ftp.reply; else p = "nothing";