summaryrefslogtreecommitdiff
path: root/udevinfo.c
diff options
context:
space:
mode:
authorkay.sievers@vrfy.org <kay.sievers@vrfy.org>2005-03-10 18:35:50 +0100
committerGreg KH <gregkh@suse.de>2005-04-26 23:53:17 -0700
commit3810823b4410e0bfbaa46e5e63e36a0989ba37f3 (patch)
tree6a4481d4c34c0885b1f2aca49a936fb257b7c2da /udevinfo.c
parent4d7726399bcaf74105f8f3c27ee37b5dbddc1fee (diff)
[PATCH] udevinfo -d: use '=' as separator, cause ':' may be a part of the devpath
Diffstat (limited to 'udevinfo.c')
-rw-r--r--udevinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/udevinfo.c b/udevinfo.c
index 4d13a5f6dc..930a7be0ae 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;
}