fix some more compiler warnings

This commit is contained in:
Harald Welte 2009-05-23 06:14:44 +00:00
parent 75d34a8b3d
commit 703af9887d
2 changed files with 5 additions and 1 deletions

View File

@ -47,4 +47,6 @@ struct telnet_connection {
void telnet_init(struct gsm_network *network, int port);
int bsc_vty_init(struct gsm_network *net);
#endif

View File

@ -49,10 +49,12 @@ LLIST_HEAD(active_connections);
/* per network data */
static int telnet_new_connection(struct bsc_fd *fd, unsigned int what);
#if 0
static int telnet_paging_callback(unsigned int subsys, unsigned int signal,
void *handler_data, void *signal_data);
static int telnet_sms_callback(unsigned int subsys, unsigned int signal,
void *handler_data, void *signal_data);
#endif
static struct bsc_fd server_socket = {
.when = BSC_FD_READ,
@ -131,7 +133,7 @@ int telnet_close_client(struct bsc_fd *fd) {
static int client_data(struct bsc_fd *fd, unsigned int what)
{
struct telnet_connection *conn = fd->data;
int rc;
int rc = 0;
if (what & BSC_FD_READ) {
conn->fd.when &= ~BSC_FD_READ;