2001-04-20 Jake Janovetz <janovetz@uiuc.edu>

* rtems_servers/ftpd.c: Correct argument so hooks work again.
This commit is contained in:
Joel Sherrill
2001-04-20 19:17:08 +00:00
parent 52dace9105
commit a8c3326863
5 changed files with 14 additions and 2 deletions
+4
View File
@@ -1,3 +1,7 @@
2001-04-20 Jake Janovetz <janovetz@uiuc.edu>
* rtems_servers/ftpd.c: Correct argument so hooks work again.
2001-03-15 Ralf Corsepiu <corsepius@faw.uni-ulm.de>
* include/.cvsignore: Remove danlgling file.
+4
View File
@@ -1,3 +1,7 @@
2001-04-20 Jake Janovetz <janovetz@uiuc.edu>
* rtems_servers/ftpd.c: Correct argument so hooks work again.
2001-03-15 Ralf Corsepiu <corsepius@faw.uni-ulm.de>
* include/.cvsignore: Remove danlgling file.
+1 -1
View File
@@ -963,7 +963,7 @@ command_store(FTPD_SessionInfo_t *info, char const *filename)
hook = &rtems_ftpd_configuration.hooks[i++];
while (hook->filename != NULL)
{
if (!strcmp(hook->filename, buf))
if (!strcmp(hook->filename, filename))
{
usehook = hook;
break;
+1 -1
View File
@@ -963,7 +963,7 @@ command_store(FTPD_SessionInfo_t *info, char const *filename)
hook = &rtems_ftpd_configuration.hooks[i++];
while (hook->filename != NULL)
{
if (!strcmp(hook->filename, buf))
if (!strcmp(hook->filename, filename))
{
usehook = hook;
break;
+4
View File
@@ -1,3 +1,7 @@
2001-04-20 Jake Janovetz <janovetz@uiuc.edu>
* rtems_servers/ftpd.c: Correct argument so hooks work again.
2001-03-15 Ralf Corsepiu <corsepius@faw.uni-ulm.de>
* include/.cvsignore: Remove danlgling file.