Commit f9044071 f904407152b063f26b6019941701802e7c2cd971 by Sam Roberts

Return ENOENT if the url type wasn't registered, like the other factory

creation functions.
1 parent 098c5436
......@@ -101,6 +101,8 @@ mailer_create (mailer_t *pmailer, const char *name)
else
*pmailer = mailer;
}
else
status = ENOENT;
return status;
}
......