From e3d29b5f9e68447a09dec7215f9ad75d3cc17a0a Mon Sep 17 00:00:00 2001 From: paul Date: Thu, 23 Jan 2003 18:05:42 +0000 Subject: Replace _SC_PAGESIZE with the far more portable getpagesize(). (needed, eg, for Darwin). Kris Foster --- vtysh/vtysh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vtysh/vtysh.c') diff --git a/vtysh/vtysh.c b/vtysh/vtysh.c index 6e124752..3492e741 100644 --- a/vtysh/vtysh.c +++ b/vtysh/vtysh.c @@ -217,7 +217,7 @@ vtysh_client_config (struct vtysh_client *vclient, char *line) /* Allow enough room for buffer to read more than a few pages from socket */ - bufsz = 5 * sysconf(_SC_PAGESIZE) + 1; + bufsz = 5 * getpagesize() + 1; buf = XMALLOC(MTYPE_TMP, bufsz); memset(buf, 0, bufsz); pbuf = buf; -- cgit v1.2.1