chiark / gitweb /
Update gentoo rules file.
[elogind.git] / udevtest.c
index d3e43593bf810078da7f2cc062c0ce5775ef5aa5..4890b6837c3c5e1b058165bc15e0ec246978acdc 100644 (file)
@@ -1,9 +1,7 @@
 /*
  * udevtest.c
  *
- * Userspace devfs
- *
- * Copyright (C) 2003,2004 Greg Kroah-Hartman <greg@kroah.com>
+ * Copyright (C) 2003-2004 Greg Kroah-Hartman <greg@kroah.com>
  *
  *     This program is free software; you can redistribute it and/or modify it
  *     under the terms of the GNU General Public License as published by the
@@ -55,6 +53,7 @@ void log_message (int priority, const char *format, ...)
 
 int main(int argc, char *argv[], char *envp[])
 {
+       struct udev_rules rules;
        struct sysfs_class_device *class_dev;
        char *devpath;
        char path[PATH_SIZE];
@@ -93,7 +92,7 @@ int main(int argc, char *argv[], char *envp[])
        info("looking at device '%s' from subsystem '%s'", devpath, subsystem);
 
        /* initialize the naming deamon */
-       udev_rules_init();
+       udev_rules_init(&rules, 0);
 
        /* fill in values and test_run flag*/
        udev_init_device(&udev, devpath, subsystem, "add");
@@ -114,7 +113,7 @@ int main(int argc, char *argv[], char *envp[])
        /* simulate node creation with test flag */
        udev.test_run = 1;
        if (udev.type == DEV_NET || udev.devt) {
-               udev_rules_get_name(&udev, class_dev);
+               udev_rules_get_name(&rules, &udev, class_dev);
                udev_add_device(&udev, class_dev);
        } else
                info("only char and block devices with a dev-file are supported by this test program");