ia64/xen-unstable
changeset 5883:c20ccb474166
Fix missing argument rename in xenbus_exists.
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
author | cl349@firebug.cl.cam.ac.uk |
---|---|
date | Tue Jul 26 17:15:53 2005 +0000 (2005-07-26) |
parents | aeb3b64ea40e |
children | aa8776c44b65 |
files | linux-2.6-xen-sparse/drivers/xen/xenbus/xenbus_xs.c |
line diff
1.1 --- a/linux-2.6-xen-sparse/drivers/xen/xenbus/xenbus_xs.c Tue Jul 26 17:07:50 2005 +0000 1.2 +++ b/linux-2.6-xen-sparse/drivers/xen/xenbus/xenbus_xs.c Tue Jul 26 17:15:53 2005 +0000 1.3 @@ -231,7 +231,7 @@ int xenbus_exists(const char *dir, const 1.4 char **d; 1.5 int dir_n; 1.6 1.7 - d = xenbus_directory(path, node, &dir_n); 1.8 + d = xenbus_directory(dir, node, &dir_n); 1.9 if (IS_ERR(d)) 1.10 return 0; 1.11 kfree(d);