1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-19 10:53:58 +00:00

Constify interactive_ports, as its value is static, and therefore doesn't

require synchronization.
This commit is contained in:
Robert Watson 2004-03-13 06:16:59 +00:00
parent 5d8dd01da2
commit 7ad4bd536a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=126910

View File

@ -281,7 +281,7 @@ static struct callout_handle keepalive_ch;
*
* XXX is this really still necessary? - joerg -
*/
static u_short interactive_ports[8] = {
static const u_short interactive_ports[8] = {
0, 513, 0, 0,
0, 21, 0, 23,
};