opm: downgrade a non-fatal warning

This commit is contained in:
Elizabeth Myers 2016-04-02 19:50:25 -05:00
parent 3d2fc110e3
commit 18f3b3c928

View file

@ -463,7 +463,7 @@ establish_connection(struct auth_client *auth, struct opm_proxy *proxy)
scan->proxy = proxy;
if((scan->F = rb_socket(GET_SS_FAMILY(&auth->c_addr), SOCK_STREAM, 0, proxy->note)) == NULL)
{
warn_opers(L_CRIT, "OPM: could not create OPM socket (proto %s): %s", proxy->note, strerror(errno));
warn_opers(L_WARN, "OPM: could not create OPM socket (proto %s): %s", proxy->note, strerror(errno));
rb_free(scan);
return;
}