diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-04-05 03:18:40 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-04-05 03:18:40 +0200 |
commit | 37f5bef63c0db4892d8ffa3c38a04c7998e10f83 (patch) | |
tree | a2867f7b8d8a50954f331729bb55e4352f48ff9a /coreutils | |
parent | 4c721049c3114c946848fbbd38d6180aa7af537d (diff) | |
download | busybox-37f5bef63c0db4892d8ffa3c38a04c7998e10f83.tar.gz |
libbb: split update_utmp from login/getty in preparation to use it for telnetd
function old new delta
update_utent - 339 +339
login_main 1498 1128 -370
------------------------------------------------------------------------------
(add/remove: 1/0 grow/shrink: 0/1 up/down: 339/-370) Total: -31 bytes
function old new delta
update_utmp 246 337 +91
login_main 1128 1140 +12
getty_main 1908 1918 +10
...
update_utent 339 - -339
------------------------------------------------------------------------------
(add/remove: 1/1 grow/shrink: 5/6 up/down: 119/-368) Total: -249 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/who.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/who.c b/coreutils/who.c index dfbb4c046..2b4331025 100644 --- a/coreutils/who.c +++ b/coreutils/who.c @@ -16,7 +16,7 @@ * *---------------------------------------------------------------------- */ -/* BB_AUDIT SUSv3 _NOT_ compliant -- missing options -b, -d, -H, -l, -m, -p, -q, -r, -s, -t, -T, -u; Missing argument 'file'. */ +/* BB_AUDIT SUSv3 _NOT_ compliant -- missing options -b, -d, -l, -m, -p, -q, -r, -s, -t, -T, -u; Missing argument 'file'. */ #include "libbb.h" #include <utmp.h> |