mirror of
https://github.com/libvirt/libvirt.git
synced 2026-09-03 20:53:04 -05:00
correct the signal's name
The signal's name is wrong... Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
This commit is contained in:
+4
-4
@@ -365,10 +365,10 @@ int vshRunConsole(virDomainPtr dom, const char *devname)
|
||||
}
|
||||
|
||||
/* Restore original signal handlers */
|
||||
signal(SIGQUIT, old_sigpipe);
|
||||
signal(SIGQUIT, old_sighup);
|
||||
signal(SIGQUIT, old_sigint);
|
||||
signal(SIGQUIT, old_sigterm);
|
||||
signal(SIGPIPE, old_sigpipe);
|
||||
signal(SIGHUP, old_sighup);
|
||||
signal(SIGINT, old_sigint);
|
||||
signal(SIGTERM, old_sigterm);
|
||||
signal(SIGQUIT, old_sigquit);
|
||||
|
||||
resettty:
|
||||
|
||||
Reference in New Issue
Block a user