1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

o _get_workd was always returning the end on iput

This commit is contained in:
Joe Thornber 2001-08-22 13:52:26 +00:00
parent e753457e7d
commit 9d4aaf49c1

View File

@ -260,7 +260,7 @@ static int _get_word(const char *b, const char *e,
*wb = b;
while(b != e && !isspace((int) b))
b++;
*we = e;
*we = b;
return 1;
}