From 3810823b4410e0bfbaa46e5e63e36a0989ba37f3 Mon Sep 17 00:00:00 2001 From: "kay.sievers@vrfy.org" Date: Thu, 10 Mar 2005 18:35:50 +0100 Subject: [PATCH] [PATCH] udevinfo -d: use '=' as separator, cause ':' may be a part of the devpath --- udevinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.30.2