Compare commits

..

No commits in common. "e0ac538e4f7bed9e6fb13b4c7c2ecea080b1245b" and "901072385e195a5c3c4391378fb3efa5f004db7e" have entirely different histories.

7 changed files with 11 additions and 17 deletions

6
debian/changelog vendored
View File

@ -1,9 +1,3 @@
bforce (0.27.1) UNRELEASED; urgency=medium
* Fixed build under GCC15
-- Alexey Khromov <zx@zxalexis.ru> Sun, 22 Mar 2026 19:19:54 +0300
bforce (0.27) UNRELEASED; urgency=medium bforce (0.27) UNRELEASED; urgency=medium
* Fixed warnings from PVS-Studio analyser * Fixed warnings from PVS-Studio analyser

View File

@ -1,6 +1,6 @@
Summary: Bforce, Fidonet mailer Summary: Bforce, Fidonet mailer
Name: bforce Name: bforce
Version: 0.27.1 Version: 0.27
Release: %{_vendor}1 Release: %{_vendor}1
Copyright: GPL Copyright: GPL
Group: Fidonet/mailer Group: Fidonet/mailer

View File

View File

@ -1 +1 @@
0.27.1 0.27

View File

@ -286,9 +286,9 @@ static int sm_tx_waitseq(s_tx_emsidat *d)
static s_states st_tx_emsidat[] = static s_states st_tx_emsidat[] =
{ {
{ "sm_tx_init", (int (*)(void *))sm_tx_init }, { "sm_tx_init", sm_tx_init },
{ "sm_tx_senddat", (int (*)(void *))sm_tx_senddat }, { "sm_tx_senddat", sm_tx_senddat },
{ "sm_tx_waitseq", (int (*)(void *))sm_tx_waitseq } { "sm_tx_waitseq", sm_tx_waitseq }
}; };
int emsi_send_emsidat(s_emsi *local_emsi) int emsi_send_emsidat(s_emsi *local_emsi)
@ -570,10 +570,10 @@ static int sm_rx_getdat(s_rx_emsidat *d)
static s_states st_rx_emsidat[] = static s_states st_rx_emsidat[] =
{ {
{ "sm_rx_init", (int (*)(void *))sm_rx_init }, { "sm_rx_init", sm_rx_init },
{ "sm_rx_sendnak", (int (*)(void *))sm_rx_sendnak }, { "sm_rx_sendnak", sm_rx_sendnak },
{ "sm_rx_waitseq", (int (*)(void *))sm_rx_waitseq }, { "sm_rx_waitseq", sm_rx_waitseq },
{ "sm_rx_getdat", (int (*)(void *))sm_rx_getdat } { "sm_rx_getdat", sm_rx_getdat }
}; };
int emsi_recv_emsidat(s_emsi *remote_emsi) int emsi_recv_emsidat(s_emsi *remote_emsi)

View File

@ -3,7 +3,7 @@ dnl
dnl $Id$ dnl $Id$
dnl dnl
#AC_INIT(bforce/bforce.c) #AC_INIT(bforce/bforce.c)
AC_INIT([bforce],[0.27.1],[zx@zxalexis.ru]) AC_INIT([bforce],[0.27],[zx@zxalexis.ru])
AC_CONFIG_HEADER(include/config.h) AC_CONFIG_HEADER(include/config.h)
AC_CANONICAL_SYSTEM AC_CANONICAL_SYSTEM
dnl # Minimum Autoconf version required. dnl # Minimum Autoconf version required.

View File

@ -72,7 +72,7 @@
struct states struct states
{ {
const char *st_name; const char *st_name;
int (*proc)(void *); int (*proc)();
}; };
typedef struct states s_states; typedef struct states s_states;