aboutsummaryrefslogtreecommitdiffstats
path: root/protocols
diff options
context:
space:
mode:
Diffstat (limited to 'protocols')
-rw-r--r--protocols/msn/msn_util.c2
-rw-r--r--protocols/msn/soap.c4
-rw-r--r--protocols/nogaim.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/protocols/msn/msn_util.c b/protocols/msn/msn_util.c
index 763b2768..af00e461 100644
--- a/protocols/msn/msn_util.c
+++ b/protocols/msn/msn_util.c
@@ -179,7 +179,7 @@ void msn_queue_feed(struct msn_data *h, char *bytes, int st)
if (getenv("BITLBEE_DEBUG")) {
fprintf(stderr, "\n\x1b[92m<<< ");
- write(2, bytes , st);
+ fwrite(bytes, st, 1, stderr);
fprintf(stderr, "\x1b[97m");
}
}
diff --git a/protocols/msn/soap.c b/protocols/msn/soap.c
index 1fa22d13..14aaed11 100644
--- a/protocols/msn/soap.c
+++ b/protocols/msn/soap.c
@@ -212,9 +212,9 @@ static void msn_soap_debug_print(const char *headers, const char *payload)
if (headers) {
if ((s = strstr(headers, "\r\n\r\n"))) {
- write(2, headers, s - headers + 4);
+ fwrite(headers, s - headers + 4, 1, stderr);
} else {
- write(2, headers, strlen(headers));
+ fwrite(headers, strlen(headers), 1, stderr);
}
}
diff --git a/protocols/nogaim.c b/protocols/nogaim.c
index 2f6b3783..e4db7024 100644
--- a/protocols/nogaim.c
+++ b/protocols/nogaim.c
@@ -53,7 +53,7 @@ gboolean load_plugin(char *path)
{
GList *l;
struct plugin_info *i;
- struct plugin_info *info;
+ struct plugin_info *info = NULL;
struct plugin_info * (*info_function) (void) = NULL;
void (*init_function) (void);