From 18995cde5c5d2e647d94f9dcde4ba9261464c217 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 13 Jul 2011 17:26:31 +1000 Subject: s4-fault: changed to use %d for PID, instead of %PID% this matches the s3 behaviour Pair-Programmed-With: Andrew Bartlett --- lib/util/fault.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/util/fault.c') diff --git a/lib/util/fault.c b/lib/util/fault.c index 708dc670d1..ed7684aaf3 100644 --- a/lib/util/fault.c +++ b/lib/util/fault.c @@ -121,7 +121,7 @@ static void smb_panic_default(const char *why) char cmdstring[200]; strlcpy(cmdstring, panic_action, sizeof(cmdstring)); snprintf(pidstr, sizeof(pidstr), "%d", (int) getpid()); - all_string_sub(cmdstring, "%PID%", pidstr, sizeof(cmdstring)); + all_string_sub(cmdstring, "%d", pidstr, sizeof(cmdstring)); DEBUG(0, ("smb_panic(): calling panic action [%s]\n", cmdstring)); result = system(cmdstring); -- cgit