Search:
Login
Preferences
Help/Guide
About Trac
Wiki
Timeline
Roadmap
Browse Source
View Tickets
New Ticket
Search
Context Navigation
←
Previous Changeset
Next Changeset
→
Changeset 46511b3
View differences
inline
side by side
Show
lines around each change
Show the changes in full context
Ignore:
Blank lines
Case changes
White space changes
Timestamp:
2014-10-11T10:43:44Z (
10 years
ago)
Author:
dequis <dx@…>
Branches:
master
Children:
9ead105
Parents:
7b40f17
Message:
nick_lc: use unsigned chars to avoid unicode issues
File:
1 edited
nick.c
(modified)
(
1 diff
)
Legend:
Unmodified
Added
Removed
nick.c
r7b40f17
r46511b3
408
408
409
409
for( i = 0; nick[i]; i ++ )
410
if(
nick[i]
< 0x7f )
411
nick[i] = tab[(
int
)nick[i]];
410
if(
((guchar)nick[i])
< 0x7f )
411
nick[i] = tab[(
guchar
)nick[i]];
412
412
413
413
return nick_ok( irc, nick );
Note:
See
TracChangeset
for help on using the changeset viewer.
Download in other formats:
Unified Diff
Zip Archive