diff options
Diffstat (limited to 'sys/kern/uipc_socket2.c')
-rw-r--r-- | sys/kern/uipc_socket2.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/kern/uipc_socket2.c b/sys/kern/uipc_socket2.c index 6596a535152..cd18ff1db73 100644 --- a/sys/kern/uipc_socket2.c +++ b/sys/kern/uipc_socket2.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uipc_socket2.c,v 1.31 2002/08/26 16:39:25 dhartmei Exp $ */ +/* $OpenBSD: uipc_socket2.c,v 1.32 2002/10/10 22:27:30 art Exp $ */ /* $NetBSD: uipc_socket2.c,v 1.11 1996/02/04 02:17:55 christos Exp $ */ /* @@ -54,10 +54,10 @@ */ /* strings for sleep message: */ -char netcon[] = "netcon"; -char netcls[] = "netcls"; -char netio[] = "netio"; -char netlck[] = "netlck"; +const char netcon[] = "netcon"; +const char netcls[] = "netcls"; +const char netio[] = "netio"; +const char netlck[] = "netlck"; u_long sb_max = SB_MAX; /* patchable */ |