mirror of
https://gitlab.com/shorewall/code.git
synced 2024-12-25 23:59:01 +01:00
Report the file/line where action invoked
Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
parent
63ec936f21
commit
c1e7fce1c5
@ -2999,8 +2999,8 @@ sub process_compiler_directive( $$$$ ) {
|
|||||||
$filename ,
|
$filename ,
|
||||||
$linenumber ,
|
$linenumber ,
|
||||||
1 ) ,
|
1 ) ,
|
||||||
$filename ,
|
$actparams{callfile} ,
|
||||||
$linenumber ) unless $omitting;
|
$actparams{callline} ) unless $omitting;
|
||||||
} ,
|
} ,
|
||||||
|
|
||||||
WARNING => sub() {
|
WARNING => sub() {
|
||||||
@ -3009,8 +3009,8 @@ sub process_compiler_directive( $$$$ ) {
|
|||||||
$filename ,
|
$filename ,
|
||||||
$linenumber ,
|
$linenumber ,
|
||||||
1 ),
|
1 ),
|
||||||
$filename ,
|
$actparams{callfile} ,
|
||||||
$linenumber ) unless $omitting;
|
$actparams{callline} ) unless $omitting;
|
||||||
} ,
|
} ,
|
||||||
|
|
||||||
INFO => sub() {
|
INFO => sub() {
|
||||||
@ -3019,8 +3019,8 @@ sub process_compiler_directive( $$$$ ) {
|
|||||||
$filename ,
|
$filename ,
|
||||||
$linenumber ,
|
$linenumber ,
|
||||||
1 ),
|
1 ),
|
||||||
$filename ,
|
$actparams{callfile} ,
|
||||||
$linenumber ) unless $omitting;
|
$actparams{callline} ) unless $omitting;
|
||||||
} ,
|
} ,
|
||||||
|
|
||||||
'WARNING!' => sub() {
|
'WARNING!' => sub() {
|
||||||
@ -3029,8 +3029,8 @@ sub process_compiler_directive( $$$$ ) {
|
|||||||
$filename ,
|
$filename ,
|
||||||
$linenumber ,
|
$linenumber ,
|
||||||
1 ),
|
1 ),
|
||||||
$filename ,
|
$actparams{callfile} ,
|
||||||
$linenumber ) unless $omitting;
|
$actparams{callline} ) unless $omitting;
|
||||||
} ,
|
} ,
|
||||||
|
|
||||||
'INFO!' => sub() {
|
'INFO!' => sub() {
|
||||||
@ -3039,8 +3039,8 @@ sub process_compiler_directive( $$$$ ) {
|
|||||||
$filename ,
|
$filename ,
|
||||||
$linenumber ,
|
$linenumber ,
|
||||||
1 ),
|
1 ),
|
||||||
$filename ,
|
$actparams{callfile} ,
|
||||||
$linenumber ) unless $omitting;
|
$actparams{callline} ) unless $omitting;
|
||||||
} ,
|
} ,
|
||||||
|
|
||||||
REQUIRE => sub() {
|
REQUIRE => sub() {
|
||||||
@ -3548,6 +3548,8 @@ sub push_action_params( $$$$$$ ) {
|
|||||||
$actparams{logtag} = $logtag;
|
$actparams{logtag} = $logtag;
|
||||||
$actparams{caller} = $caller;
|
$actparams{caller} = $caller;
|
||||||
$actparams{disposition} = '' if $chainref->{action};
|
$actparams{disposition} = '' if $chainref->{action};
|
||||||
|
$actparams{callfile} = $currentfilename;
|
||||||
|
$actparams{callline} = $currentlinenumber;
|
||||||
#
|
#
|
||||||
# The Shorewall variable '@chain' has non-word characters other than hyphen removed
|
# The Shorewall variable '@chain' has non-word characters other than hyphen removed
|
||||||
#
|
#
|
||||||
|
Loading…
Reference in New Issue
Block a user