[Openvas-commits] r2896 - in trunk/openvas-plugins: . scripts
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Wed Mar 25 11:46:01 CET 2009
Author: mime
Date: 2009-03-25 11:45:59 +0100 (Wed, 25 Mar 2009)
New Revision: 2896
Modified:
trunk/openvas-plugins/ChangeLog
trunk/openvas-plugins/scripts/secpod_ftp_anonymous.nasl
Log:
Bugfix
Modified: trunk/openvas-plugins/ChangeLog
===================================================================
--- trunk/openvas-plugins/ChangeLog 2009-03-25 09:57:04 UTC (rev 2895)
+++ trunk/openvas-plugins/ChangeLog 2009-03-25 10:45:59 UTC (rev 2896)
@@ -1,3 +1,7 @@
+2009-03-25 Michael Meyer <mime at gmx.de>
+ * scripts/secpod_ftp_anonymous.nasl:
+ Bugfix.
+
2009-03-24 Michael Meyer <mime at gmx.de>
* scripts/OpenVAS_detect.nasl:
Added new plugin
Modified: trunk/openvas-plugins/scripts/secpod_ftp_anonymous.nasl
===================================================================
--- trunk/openvas-plugins/scripts/secpod_ftp_anonymous.nasl 2009-03-25 09:57:04 UTC (rev 2895)
+++ trunk/openvas-plugins/scripts/secpod_ftp_anonymous.nasl 2009-03-25 10:45:59 UTC (rev 2896)
@@ -106,7 +106,7 @@
set_kb_item(name:"ftp/password", value:passwd);
}
- if(result and strlen(result)) {
+ if(result && strlen(result)) {
info = string("Medium\n\nHere the contents of the remote FTP directory listing:\n\n");
info += result;
info += string("\n");
More information about the Openvas-commits
mailing list