MCPcopy Create free account
hub / github.com/apache/httpd / md_util_fopen

Function md_util_fopen

modules/md/md_util.c:352–360  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

350/* file system related */
351
352apr_status_t md_util_fopen(FILE **pf, const char *fn, const char *mode)
353{
354 *pf = fopen(fn, mode);
355 if (*pf == NULL) {
356 return errno;
357 }
358
359 return APR_SUCCESS;
360}
361
362apr_status_t md_util_fcreatex(apr_file_t **pf, const char *fn,
363 apr_fileperms_t perms, apr_pool_t *p)

Callers 3

md_cert_floadFunction · 0.85
md_chain_fappendFunction · 0.85
md_chain_fsaveFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected