mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-12 23:23:01 +01:00
commit
99b16e3af1
@ -1,5 +1,3 @@
|
||||
SUBDIRS = build misc
|
||||
|
||||
ACLOCAL_AMFLAGS = -I m4
|
||||
|
||||
AM_CFLAGS = -wall -c89 -werror
|
||||
|
@ -23,7 +23,7 @@ toxic_SOURCES = $(top_srcdir)/src/main.c \
|
||||
$(top_srcdir)/src/misc_tools.c \
|
||||
$(top_srcdir)/src/misc_tools.h
|
||||
|
||||
toxic_CFLAGS = -I$(top_srcdir) \
|
||||
toxic_CFLAGS = -I$(top_srcdir) \
|
||||
$(NCURSES_CFLAGS) \
|
||||
$(LIBSODIUM_CFLAGS) \
|
||||
$(LIBTOXCORE_CFLAGS)
|
||||
|
@ -7,5 +7,6 @@
|
||||
ToxWindow new_friendlist();
|
||||
void disable_chatwin(int f_num);
|
||||
int get_friendnum(uint8_t *name);
|
||||
void sort_friendlist_index(void);
|
||||
|
||||
#endif /* end of include guard: FRIENDLIST_H_53I41IM */
|
||||
|
@ -230,7 +230,7 @@ static void do_tox(Tox *m, ToxWindow *prompt)
|
||||
if (!dht_on && !tox_isconnected(m) && !(conn_try++ % 100)) {
|
||||
if (!conn_err) {
|
||||
wprintw(prompt->window, "Establishing connection...\n");
|
||||
if (conn_err = init_connection(m))
|
||||
if ((conn_err = init_connection(m)))
|
||||
wprintw(prompt->window, "\nAuto-connect failed with error code %d\n", conn_err);
|
||||
}
|
||||
} else if (!dht_on && tox_isconnected(m)) {
|
||||
|
Loading…
Reference in New Issue
Block a user