From b963fe41ae2cd669e5819aded531375ddaebc8b2 Mon Sep 17 00:00:00 2001 From: "Kelvin M. Klann" Date: Fri, 16 Jun 2023 15:42:20 -0300 Subject: Improve errExit error messages Changes: * Move msg to the end of errExit (right before perror(3p)) * Include the full file path (within the repository) * Add "()" to function name for clarity Before: Error malloc: main.c:123 main: Cannot allocate memory After: Error src/firejail/main.c:123 main(): malloc: Cannot allocate memory Note: This clarifies which is the exact file that the error message comes from, as there are many source files with the same name. For example: $ git ls-files 'src/*/main.c' | wc -l 20 --- src/fnettrace-icmp/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'src/fnettrace-icmp') diff --git a/src/fnettrace-icmp/Makefile b/src/fnettrace-icmp/Makefile index 0d26dc2fc..4791e0b9f 100644 --- a/src/fnettrace-icmp/Makefile +++ b/src/fnettrace-icmp/Makefile @@ -2,6 +2,7 @@ ROOT = ../.. -include $(ROOT)/config.mk +MOD_DIR = src/fnettrace-icmp PROG = fnettrace-icmp TARGET = $(PROG) -- cgit v1.2.3-54-g00ecf