From 442db668872dfbe469e8b272a86109511f45523f Mon Sep 17 00:00:00 2001
From: Dagobert Michelsen <dam@opencsw.org>
Date: Fri, 6 Aug 2010 15:38:01 +0200
Subject: [PATCH 6/6] Remove definition on Solaris confusing includes
---
protocols/twitter/twitter_lib.c | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/protocols/twitter/twitter_lib.c b/protocols/twitter/twitter_lib.c
index d1b65c2..8e9c5af 100644
a
|
b
|
|
22 | 22 | ****************************************************************************/ |
23 | 23 | |
24 | 24 | /* For strptime(): */ |
| 25 | #if(__sun) |
| 26 | #else |
25 | 27 | #define _XOPEN_SOURCE |
| 28 | #endif |
26 | 29 | |
27 | 30 | #include "twitter_http.h" |
28 | 31 | #include "twitter.h" |
… |
… |
void twitter_friendships_create_destroy(struct im_connection *ic, char *who, int |
735 | 738 | args[0] = "screen_name"; |
736 | 739 | args[1] = who; |
737 | 740 | twitter_http(ic, create ? TWITTER_FRIENDSHIPS_CREATE_URL : TWITTER_FRIENDSHIPS_DESTROY_URL, twitter_http_post, ic, 1, args, 2); |
738 | | } |
739 | | No newline at end of file |
| 741 | } |