diff options
author | Raimo Niskanen <[email protected]> | 2017-10-13 16:26:23 +0200 |
---|---|---|
committer | Raimo Niskanen <[email protected]> | 2017-10-13 16:42:54 +0200 |
commit | 5a1131d8c73fa9f5bfb23e7bdf5f406ccd2a1b54 (patch) | |
tree | 8fd0a4f4d8a1bbdda1ba9eed9080795cb07b736f /lib/snmp/src/manager | |
parent | 02fd746c40e829adbe77cc526c7df904698e2534 (diff) | |
download | otp-5a1131d8c73fa9f5bfb23e7bdf5f406ccd2a1b54.tar.gz otp-5a1131d8c73fa9f5bfb23e7bdf5f406ccd2a1b54.tar.bz2 otp-5a1131d8c73fa9f5bfb23e7bdf5f406ccd2a1b54.zip |
Fix speling error 'sndbuf' -> 'recbuf'
Diffstat (limited to 'lib/snmp/src/manager')
-rw-r--r-- | lib/snmp/src/manager/snmpm_net_if.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/snmp/src/manager/snmpm_net_if.erl b/lib/snmp/src/manager/snmpm_net_if.erl index 93c987eb0f..29216f9d6a 100644 --- a/lib/snmp/src/manager/snmpm_net_if.erl +++ b/lib/snmp/src/manager/snmpm_net_if.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2004-2015. All Rights Reserved. +%% Copyright Ericsson AB 2004-2017. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. @@ -367,7 +367,7 @@ common_socket_opts(Opts) -> default -> []; Sz -> - [{sndbuf, Sz}] + [{recbuf, Sz}] end ++ case get_opt(Opts, no_reuse, false) of false -> |