From 8c55b0bd88227949ee63c88acb6c001089b3954e Mon Sep 17 00:00:00 2001 From: Michael Larson Date: Tue, 16 Nov 2010 15:30:49 -0800 Subject: allow error location to be set via environmental variable. update commit check to preserve key when flag is set. --- src/commit2.c | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/commit2.c b/src/commit2.c index 92f37ed..6d2270d 100644 --- a/src/commit2.c +++ b/src/commit2.c @@ -192,6 +192,12 @@ main(int argc, char** argv) } } + //can also be set via environment variable + if (getenv("VYATTA_OUTPUT_ERROR_LOCATION") != NULL) { + g_print_error_location_all = TRUE; + } + + initialize_output("Commit"); init_paths(TRUE); if (g_debug) { @@ -1474,7 +1480,12 @@ validate_func(GNode *node, gpointer data) } char *p = clind_unescape(path_buf); if (strlen(outbuf) > 0) { - fprintf(out_stream,"[ %s ] \n %s\n",p,outbuf); + if (g_print_error_location_all == TRUE) { + fprintf(out_stream,"_errloc_:[ %s ] \n %s\n",p,outbuf); + } + else { + fprintf(out_stream,"[ %s ] \n %s\n",p,outbuf); + } } syslog(LOG_ERR,"commit error for %s:[%s]\n",ActionNames[result->_action],d->_path); if (g_display_error_node) { -- cgit v1.2.3