ossp-pkg/lmtp2nntp/lmtp2nntp_main.c 1.68 -> 1.69
--- lmtp2nntp_main.c 2003/02/10 14:25:39 1.68
+++ lmtp2nntp_main.c 2003/02/11 11:41:11 1.69
@@ -464,11 +464,18 @@
{
lmtp2nntp_option_rc_t rvo;
lmtp2nntp_config_rc_t rvc;
+ ex_t ex;
if (option_create(&o, ctx->val) != OPTION_OK)
CU(ERR_EXECUTION);
rvo = option_parse(o, argc, argv);
- rvc = config_context(ctx);
+ rvc = CONFIG_OK;
+ try {
+ rvc = config_context(ctx);
+ }
+ catch(ex) {
+ rvc = CONFIG_ERR_TRY;
+ }
if (rvc == CONFIG_OK_DRY)
CU(0);
if (rvo != OPTION_OK || rvc != CONFIG_OK)
|
|