mirror of
https://github.com/systemd/systemd.git
synced 2024-12-23 21:35:11 +03:00
[PATCH] fix bug in klibc's isspace function.
This commit is contained in:
parent
8d8172514d
commit
dc5cecf659
@ -88,7 +88,7 @@ __ctype_inline int ispunct(int __c)
|
||||
|
||||
__ctype_inline int isspace(int __c)
|
||||
{
|
||||
return __ctypes[__c+1] & __ctype_space;
|
||||
return __ctypes[__c] & __ctype_space;
|
||||
}
|
||||
|
||||
__ctype_inline int isupper(int __c)
|
||||
|
Loading…
Reference in New Issue
Block a user