Compare commits
5 Commits
901072385e
...
e0ac538e4f
| Author | SHA1 | Date | |
|---|---|---|---|
| e0ac538e4f | |||
| 6fb4ace5cc | |||
| 6b73c068a0 | |||
| eead012999 | |||
| 981a9aba37 |
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
|||||||
|
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
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
Summary: Bforce, Fidonet mailer
|
Summary: Bforce, Fidonet mailer
|
||||||
Name: bforce
|
Name: bforce
|
||||||
Version: 0.27
|
Version: 0.27.1
|
||||||
Release: %{_vendor}1
|
Release: %{_vendor}1
|
||||||
Copyright: GPL
|
Copyright: GPL
|
||||||
Group: Fidonet/mailer
|
Group: Fidonet/mailer
|
||||||
|
|||||||
0
source/.ccls
Normal file
0
source/.ccls
Normal file
@ -1 +1 @@
|
|||||||
0.27
|
0.27.1
|
||||||
|
|||||||
@ -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", sm_tx_init },
|
{ "sm_tx_init", (int (*)(void *))sm_tx_init },
|
||||||
{ "sm_tx_senddat", sm_tx_senddat },
|
{ "sm_tx_senddat", (int (*)(void *))sm_tx_senddat },
|
||||||
{ "sm_tx_waitseq", sm_tx_waitseq }
|
{ "sm_tx_waitseq", (int (*)(void *))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", sm_rx_init },
|
{ "sm_rx_init", (int (*)(void *))sm_rx_init },
|
||||||
{ "sm_rx_sendnak", sm_rx_sendnak },
|
{ "sm_rx_sendnak", (int (*)(void *))sm_rx_sendnak },
|
||||||
{ "sm_rx_waitseq", sm_rx_waitseq },
|
{ "sm_rx_waitseq", (int (*)(void *))sm_rx_waitseq },
|
||||||
{ "sm_rx_getdat", sm_rx_getdat }
|
{ "sm_rx_getdat", (int (*)(void *))sm_rx_getdat }
|
||||||
};
|
};
|
||||||
|
|
||||||
int emsi_recv_emsidat(s_emsi *remote_emsi)
|
int emsi_recv_emsidat(s_emsi *remote_emsi)
|
||||||
|
|||||||
@ -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],[zx@zxalexis.ru])
|
AC_INIT([bforce],[0.27.1],[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.
|
||||||
|
|||||||
@ -72,7 +72,7 @@
|
|||||||
struct states
|
struct states
|
||||||
{
|
{
|
||||||
const char *st_name;
|
const char *st_name;
|
||||||
int (*proc)();
|
int (*proc)(void *);
|
||||||
};
|
};
|
||||||
typedef struct states s_states;
|
typedef struct states s_states;
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user