9
0
Fork 0

nfs: fix calling of string_to_ip()

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2008-09-30 10:46:24 +02:00
parent 5e112453b2
commit ae3f56c84a
1 changed files with 1 additions and 1 deletions

View File

@ -682,7 +682,7 @@ NfsStart (void)
p = strchr (p, ':');
if (p != NULL) {
NfsServerIP = string_to_ip (BootFile);
string_to_ip (BootFile, &NfsServerIP);
++p;
strcpy (nfs_path, p);
} else {