From: kay.sievers@vrfy.org Date: Thu, 10 Mar 2005 17:35:50 +0000 (+0100) Subject: [PATCH] udevinfo -d: use '=' as separator, cause ':' may be a part of the devpath X-Git-Tag: 055~25 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=3810823b4410e0bfbaa46e5e63e36a0989ba37f3;ds=sidebyside [PATCH] udevinfo -d: use '=' as separator, cause ':' may be a part of the devpath --- diff --git a/udevinfo.c b/udevinfo.c index 4d13a5f6d..930a7be0a 100644 --- a/udevinfo.c +++ b/udevinfo.c @@ -180,7 +180,7 @@ exit: } static int print_dump(const char *devpath, const char *name) { - printf("%s:%s/%s\n", devpath, udev_root, name); + printf("%s=%s/%s\n", devpath, udev_root, name); return 0; }