mirror of
https://github.com/samba-team/samba.git
synced 2025-08-02 00:22:11 +03:00
s4-fault: changed to use %d for PID, instead of %PID%
this matches the s3 behaviour Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
@ -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);
|
||||
|
||||
|
Reference in New Issue
Block a user