bsnmp: Fix two typos in error messages

- s/responce/response/

MFC after:	1 week
This commit is contained in:
Gordon Bergling 2022-01-26 20:25:40 +01:00
parent 9966757dd6
commit 4731124cac

View File

@ -1775,7 +1775,7 @@ snmp_discover_engine(char *passwd)
}
if (resp.error_status != SNMP_ERR_NOERROR) {
seterr(&snmp_client, "Error %d in responce", resp.error_status);
seterr(&snmp_client, "Error %d in response", resp.error_status);
return (-1);
}
@ -1821,7 +1821,7 @@ snmp_discover_engine(char *passwd)
}
if (resp.error_status != SNMP_ERR_NOERROR) {
seterr(&snmp_client, "Error %d in responce", resp.error_status);
seterr(&snmp_client, "Error %d in response", resp.error_status);
return (-1);
}