diff options
author | Raimo Niskanen <[email protected]> | 2014-07-28 15:41:06 +0200 |
---|---|---|
committer | Raimo Niskanen <[email protected]> | 2014-07-30 10:31:25 +0200 |
commit | c5d0122795f8294478f0bafce53ef72c369fd2cc (patch) | |
tree | 2f8ace394e8024a513d18fba0a7dbf6c493254cf /lib/snmp | |
parent | ad00eb19928f7056386a37e633a0b4e3d1f9442b (diff) | |
download | otp-c5d0122795f8294478f0bafce53ef72c369fd2cc.tar.gz otp-c5d0122795f8294478f0bafce53ef72c369fd2cc.tar.bz2 otp-c5d0122795f8294478f0bafce53ef72c369fd2cc.zip |
Fix call to non-existent function
Diffstat (limited to 'lib/snmp')
-rw-r--r-- | lib/snmp/src/manager/snmpm_conf.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/snmp/src/manager/snmpm_conf.erl b/lib/snmp/src/manager/snmpm_conf.erl index ed4cfd749e..888f19aec6 100644 --- a/lib/snmp/src/manager/snmpm_conf.erl +++ b/lib/snmp/src/manager/snmpm_conf.erl @@ -308,7 +308,7 @@ read_usm_config(Dir) check_usm_user_config(Entry, State) -> - {check_ok(snmpm_config:check_usrm_user_config(Entry)), + {check_ok(snmpm_config:check_usm_user_config(Entry)), State}. write_usm_conf(Fd, "", Conf) -> |