Changeset 2b02617
- Timestamp:
- 2010-08-11T20:41:23Z (14 years ago)
- Branches:
- master
- Children:
- 4ffd757
- Parents:
- 72176c1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/twitter/twitter_lib.c
r72176c1 r2b02617 357 357 } 358 358 359 #ifdef __GLIBC__ 360 #define TWITTER_TIME_FORMAT "%a %b %d %H:%M:%S %z %Y" 361 #else 362 #define TWITTER_TIME_FORMAT "%a %b %d %H:%M:%S +0000 %Y" 363 #endif 359 364 360 365 /** … … 393 398 this field. :-( Also assumes the timezone used 394 399 is UTC since C time handling functions suck. */ 395 if( strptime( child->text, "%a %b %d %H:%M:%S %z %Y", &parsed ) != NULL )400 if( strptime( child->text, TWITTER_TIME_FORMAT, &parsed ) != NULL ) 396 401 txs->created_at = mktime_utc( &parsed ); 397 402 }
Note: See TracChangeset
for help on using the changeset viewer.