aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-11-27 13:58:18 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-11-27 13:58:18 +0000
commit8a0a83d503a7971895254efa9e79cf15ba1850d4 (patch)
tree92683b2f7a6b253df5c89f37d80288a0ea15513b
parent2813ce2aad3ce78651dc3bf5d96f0ee15c75d0e0 (diff)
downloadbusybox-w32-8a0a83d503a7971895254efa9e79cf15ba1850d4.tar.gz
busybox-w32-8a0a83d503a7971895254efa9e79cf15ba1850d4.tar.bz2
busybox-w32-8a0a83d503a7971895254efa9e79cf15ba1850d4.zip
- minor shrinkage
text data bss dec hex filename 773 0 80 853 355 vlock.o.orig 766 0 80 846 34e vlock.o
-rw-r--r--loginutils/vlock.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/loginutils/vlock.c b/loginutils/vlock.c
index 7a44d9405..1414613de 100644
--- a/loginutils/vlock.c
+++ b/loginutils/vlock.c
@@ -27,10 +27,7 @@ static unsigned long o_lock_all;
27 27
28static void release_vt(int signo) 28static void release_vt(int signo)
29{ 29{
30 if (!o_lock_all) 30 ioctl(vfd, VT_RELDISP, !o_lock_all);
31 ioctl(vfd, VT_RELDISP, 1);
32 else
33 ioctl(vfd, VT_RELDISP, 0);
34} 31}
35 32
36static void acquire_vt(int signo) 33static void acquire_vt(int signo)
@@ -50,6 +47,11 @@ int vlock_main(int argc, char **argv)
50 struct sigaction sa; 47 struct sigaction sa;
51 struct vt_mode vtm; 48 struct vt_mode vtm;
52 struct termios term; 49 struct termios term;
50 uid_t uid = getuid();
51
52 pw = getpwuid(uid);
53 if (pw == NULL)
54 bb_error_msg_and_die("unknown uid %d", uid);
53 55
54 if (argc > 2) { 56 if (argc > 2) {
55 bb_show_usage(); 57 bb_show_usage();
@@ -57,10 +59,6 @@ int vlock_main(int argc, char **argv)
57 59
58 o_lock_all = getopt32(argc, argv, "a"); 60 o_lock_all = getopt32(argc, argv, "a");
59 61
60 if((pw = getpwuid(getuid())) == NULL) {
61 bb_error_msg_and_die("unknown uid %d", getuid());
62 }
63
64 vfd = xopen(CURRENT_TTY, O_RDWR); 62 vfd = xopen(CURRENT_TTY, O_RDWR);
65 63
66 if (ioctl(vfd, VT_GETMODE, &vtm) < 0) { 64 if (ioctl(vfd, VT_GETMODE, &vtm) < 0) {