diff options
author | kay.sievers@vrfy.org <kay.sievers@vrfy.org> | 2005-03-10 18:35:50 +0100 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 23:53:17 -0700 |
commit | 3810823b4410e0bfbaa46e5e63e36a0989ba37f3 (patch) | |
tree | 6a4481d4c34c0885b1f2aca49a936fb257b7c2da | |
parent | 4d7726399bcaf74105f8f3c27ee37b5dbddc1fee (diff) |
[PATCH] udevinfo -d: use '=' as separator, cause ':' may be a part of the devpath
-rw-r--r-- | udevinfo.c | 2 |
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; } |