diff options
author | Rob Landley <rob@landley.net> | 2006-01-12 03:07:49 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-01-12 03:07:49 +0000 |
commit | 1c19deed17f21792fcc485038b6173b9b4c186f1 (patch) | |
tree | eb80845f808711262925bf74f6261635c79955a7 /util-linux/mdev.c | |
parent | bbf4e167f2caa248ba0eaa05b89d02b8d8f9e4ae (diff) |
The major:minor read from dev ends with \n, need to trim that.
Diffstat (limited to 'util-linux/mdev.c')
-rw-r--r-- | util-linux/mdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/mdev.c b/util-linux/mdev.c index d414c0c10..10369ded3 100644 --- a/util-linux/mdev.c +++ b/util-linux/mdev.c @@ -42,7 +42,7 @@ static void make_device(char *path) fd = open(temp, O_RDONLY); len = read(fd, temp, PATH_MAX-1); if (len<1) goto end; - temp[len] = 0; + temp[--len] = 0; // remove trailing \n close(fd); /* Determine device name, type, major and minor */ |