commit | e3d29b5f9e68447a09dec7215f9ad75d3cc17a0a | [log] [tgz] |
---|---|---|
author | paul <paul> | Thu Jan 23 18:05:42 2003 +0000 |
committer | paul <paul> | Thu Jan 23 18:05:42 2003 +0000 |
tree | a3e785d2bc78f45c51f5413409bf9eb6a560ed63 | |
parent | 4fc4e7ab47fef3295d0ae40e064fc99478c24e23 [diff] [blame] |
Replace _SC_PAGESIZE with the far more portable getpagesize(). (needed, eg, for Darwin). Kris Foster <kris@krweb.net>
diff --git a/vtysh/vtysh.c b/vtysh/vtysh.c index 6e12475..3492e74 100644 --- a/vtysh/vtysh.c +++ b/vtysh/vtysh.c
@@ -217,7 +217,7 @@ /* 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;