1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-06-29 13:37:47 +02:00

a couple fixes

This commit is contained in:
Jfreegman 2014-09-27 03:01:23 -04:00
parent 95dfea8d29
commit a9e5723ca4
6 changed files with 8 additions and 5 deletions

View File

@ -122,7 +122,7 @@ DeviceError init_devices()
stringed_device_list += strlen( stringed_device_list ) + 1;
}
}
// Start poll thread
if (pthread_mutex_init(&mutex, NULL) != 0)
return de_InternalError;

View File

@ -191,8 +191,11 @@ void cmd_avatar(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[
return;
}
if (strlen(argv[1]) < 3)
/* turns the avatar off */
if (strlen(argv[1]) < 3) {
tox_set_avatar(m, TOX_AVATAR_FORMAT_NONE, (const uint8_t *) NULL, 0);
return;
}
if (argv[1][0] != '\"') {
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Path must be enclosed in quotes.");

View File

@ -20,7 +20,6 @@
*
*/
#include <stdlib.h>
#include <string.h>
#include "windows.h"

View File

@ -24,7 +24,6 @@
#define _GNU_SOURCE /* needed for wcwidth() */
#endif
#include <stdlib.h>
#include <wchar.h>
#include "toxic.h"

View File

@ -259,7 +259,7 @@ int rename_logfile(char *src, char *dest, const char *selfkey, const char *other
on_error:
if (log_on)
log_enable(dest, selfkey, otherkey, log, LOG_CHAT);
log_enable(src, selfkey, otherkey, log, LOG_CHAT);
return -1;
}

View File

@ -22,6 +22,8 @@
#ifndef MISC_TOOLS_H
#define MISC_TOOLS_H
#include <sys/stat.h>
#include "windows.h"
#include "toxic.h"