chiark
/
gitweb
/
~ianmdlvl
/
elogind.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3b8a1f3
)
shutdown: initialize the controlling terminal
author
Harald Hoyer
<harald@redhat.com>
Tue, 19 Jul 2011 10:47:45 +0000
(12:47 +0200)
committer
Lennart Poettering
<lennart@poettering.net>
Fri, 22 Jul 2011 02:31:21 +0000
(
04:31
+0200)
Thanks Kay Sievers!
src/shutdown.c
patch
|
blob
|
history
diff --git
a/src/shutdown.c
b/src/shutdown.c
index 0905ef5b3a96ab5523d9aa5a26db1814e1f64085..d6b47c5a7857fcab6d2e940f39e9b6145062d583 100644
(file)
--- a/
src/shutdown.c
+++ b/
src/shutdown.c
@@
-276,6
+276,9
@@
static int pivot_to_new_root(void) {
log_error("Failed to open /dev/console: %m");
else {
make_stdio(fd);
+ /* initialize the controlling terminal */
+ setsid();
+ ioctl(0, TIOCSCTTY, NULL);
}
return 0;