forked from Imagelibrary/rtems
2010-10-19 Sebastian Huber <sebastian.huber@embedded-brains.de>
* libnetworking/lib/ftpfs.c: Fixed a special case with no username and password.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2010-10-19 Sebastian Huber <sebastian.huber@embedded-brains.de>
|
||||
|
||||
* libnetworking/lib/ftpfs.c: Fixed a special case with no username and
|
||||
password.
|
||||
|
||||
2010-10-19 Chris Johns <chrisj@rtems.org>
|
||||
|
||||
* libfs/src/rfs/rtems-rfs-rtems-file.c: Add missing unlock in
|
||||
|
||||
@@ -491,6 +491,13 @@ static bool rtems_ftpfs_split_names (
|
||||
|
||||
done:
|
||||
|
||||
/* This is a special case with no username and password */
|
||||
if (*hostname == NULL) {
|
||||
*hostname = &s [0];
|
||||
*user = "anonymous";
|
||||
*password = *user;
|
||||
}
|
||||
|
||||
/* If we have no password use the user name */
|
||||
if (*password == NULL) {
|
||||
*password = *user;
|
||||
|
||||
Reference in New Issue
Block a user