Changeset 6b13103 for protocols/twitter
- Timestamp:
- 2015-01-16T19:50:23Z (10 years ago)
- Branches:
- master
- Children:
- 1065dd4, eabe6d4
- Parents:
- 6f10697
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/twitter/twitter.c
r6f10697 r6b13103 459 459 460 460 strcpy(pin, message); 461 for (s = pin + sizeof(pin) - 2; s > pin && isspace(*s); s--)461 for (s = pin + sizeof(pin) - 2; s > pin && g_ascii_isspace(*s); s--) 462 462 *s = '\0'; 463 for (s = pin; *s && isspace(*s); s++) {463 for (s = pin; *s && g_ascii_isspace(*s); s++) { 464 464 } 465 465
Note: See TracChangeset
for help on using the changeset viewer.