Commit c6880a24 authored by Franco Fichtner's avatar Franco Fichtner

inc: s/printf/sprintf, message fixup

parent c4354331
...@@ -277,7 +277,7 @@ class smtp_class ...@@ -277,7 +277,7 @@ class smtp_class
case SASL_NOMECH: case SASL_NOMECH:
if(strlen($this->authentication_mechanism)) if(strlen($this->authentication_mechanism))
{ {
$this->error=printf(gettext('authenticated mechanism %1$s may not be used: %2$s'), $this->authentication_mechanism, $sasl->error); $this->error=sprintf(gettext('Authentication mechanism %s may not be used: %s'), $this->authentication_mechanism, $sasl->error);
return(0); return(0);
} }
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment