X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=extras%2Fpath_id%2Fpath_id.c;h=dcee37881fcd0de1565743d658f9f379c7e8d3ef;hb=fc8e4dd9329f145442fb61035db4730c5c874d94;hp=08b7e150c9dacfd37ad17111a7ec7b0e58c90dd2;hpb=67dd1cdf9d42497c5e164549cd5f67a7ee62e796;p=elogind.git diff --git a/extras/path_id/path_id.c b/extras/path_id/path_id.c index 08b7e150c..dcee37881 100644 --- a/extras/path_id/path_id.c +++ b/extras/path_id/path_id.c @@ -1,8 +1,10 @@ /* - * compose persisistent device path + * compose persistent device path * * Copyright (C) 2009 Kay Sievers * + * Logic based on Hannes Reinecke's shell script. + * * 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 Free Software Foundation, either version 2 of the License, or @@ -28,10 +30,10 @@ #include #include -#include <../../udev/lib/libudev.h> -#include <../../udev/udev.h> +#include "libudev.h" +#include "libudev-private.h" -int debug; +static int debug; static void log_fn(struct udev *udev, int priority, const char *file, int line, const char *fn, @@ -366,7 +368,7 @@ int main(int argc, char **argv) if (udev == NULL) goto exit; - logging_init("usb_id"); + udev_log_init("path_id"); udev_set_log_fn(udev, log_fn); while (1) { @@ -465,6 +467,6 @@ out: udev_device_unref(dev); exit: udev_unref(udev); - logging_close(); + udev_log_close(); return rc; }