]> granicus.if.org Git - sudo/commitdiff
Add function name in "command resumed" debug message
authorTodd C. Miller <Todd.Miller@courtesan.com>
Thu, 28 Jul 2016 12:23:39 +0000 (06:23 -0600)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Thu, 28 Jul 2016 12:23:39 +0000 (06:23 -0600)
src/exec_pty.c

index 30922692b98382d54b769a955c33cf23b0a00fcd..fdc8af0724cf5efc209b866611f072d8daa3d85c 100644 (file)
@@ -1169,7 +1169,8 @@ handle_sigchld(int backchannel, struct command_status *cstat)
     }
 
     if (WIFCONTINUED(status)) {
-       sudo_debug_printf(SUDO_DEBUG_INFO, "command (%d) resumed", cmnd_pid);
+       sudo_debug_printf(SUDO_DEBUG_INFO, "%s: command (%d) resumed",
+           __func__, cmnd_pid);
     } else if (WIFSTOPPED(status)) {
        if (sig2str(WSTOPSIG(status), signame) == -1)
            snprintf(signame, sizeof(signame), "%d", WSTOPSIG(status));