diff options
| author | Gary Jennejohn <gj@FreeBSD.org> | 2003-07-26 21:58:06 +0000 |
|---|---|---|
| committer | Gary Jennejohn <gj@FreeBSD.org> | 2003-07-26 21:58:06 +0000 |
| commit | 810bf55afed3f15722353e8fceeb90b6fec87ff9 (patch) | |
| tree | 72eb2d192af7adb5c69c27ceea60beba27d2bf2a | |
| parent | 17d89a1f67f8fab87b1687046b31a63f65742e92 (diff) | |
Notes
| -rw-r--r-- | sys/net/if_spppsubr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/net/if_spppsubr.c b/sys/net/if_spppsubr.c index 3b20e58bdc52..c21d92227719 100644 --- a/sys/net/if_spppsubr.c +++ b/sys/net/if_spppsubr.c @@ -997,7 +997,7 @@ sppp_attach(struct ifnet *ifp) #ifdef INET6 sp->confflags |= CONF_ENABLE_IPV6; #endif - sp->pp_comp = malloc(sizeof(struct slcompress), M_TEMP, M_WAIT); + sp->pp_comp = malloc(sizeof(struct slcompress), M_TEMP, M_WAITOK); sl_compress_init(sp->pp_comp, -1); sppp_lcp_init(sp); sppp_ipcp_init(sp); |
