DALnet / bahamut

The Bahamut IRC Daemon
http://www.dal.net/?page=Bahamut
Other
58 stars 42 forks source link

Small declaration warning #60

Closed CaeSpock closed 5 years ago

CaeSpock commented 6 years ago

There is a small declaration warning while running make. On CentOS 7:

gcc -I../include -g -O2 -Wall -fno-strict-aliasing -fgnu89-inline -c m_server.c
m_server.c: In function ‘do_server_estab’:
m_server.c:263:5: warning: implicit declaration of function ‘spamfilter_sendserver’ [-Wimplicit-function-declaration]
     spamfilter_sendserver(cptr);
     ^

On CentOS 6:

gcc -I../include -g -O2 -Wall -fno-strict-aliasing -fgnu89-inline -c m_server.c
m_server.c: In function ‘do_server_estab’:
m_server.c:263: warning: implicit declaration of function ‘spamfilter_sendserver’

Seems that we are missing a small declaration Of course since its just a warning, after there is no problem with a make install.

// Cae

kobishmueli commented 5 years ago

Thanks for the report, this has been fixed by #59.

Kobi.