~ubuntu-branches/ubuntu/maverick/openssl/maverick

« back to all changes in this revision

Viewing changes to crypto/conf/conf_mod.c

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2005-12-13 21:37:42 UTC
  • mto: (11.1.1 lenny)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20051213213742-d0ydaylf80l16bj1
Tags: upstream-0.9.8a
ImportĀ upstreamĀ versionĀ 0.9.8a

Show diffs side-by-side

added added

removed removed

Lines of Context:
231
231
                if (!(flags & CONF_MFLAGS_SILENT))
232
232
                        {
233
233
                        char rcode[DECIMAL_SIZE(ret)+1];
234
 
                        CONFerr(CONF_F_CONF_MODULES_LOAD, CONF_R_MODULE_INITIALIZATION_ERROR);
 
234
                        CONFerr(CONF_F_MODULE_RUN, CONF_R_MODULE_INITIALIZATION_ERROR);
235
235
                        BIO_snprintf(rcode, sizeof rcode, "%-8d", ret);
236
236
                        ERR_add_error_data(6, "module=", name, ", value=", value, ", retcode=", rcode);
237
237
                        }
254
254
        path = NCONF_get_string(cnf, value, "path");
255
255
        if (!path)
256
256
                {
257
 
                ERR_get_error();
 
257
                ERR_clear_error();
258
258
                path = name;
259
259
                }
260
260
        dso = DSO_load(NULL, path, NULL, 0);