diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-02 22:56:59 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-12-02 22:56:59 +0000 |
commit | 0c68a874e7d996c62c8d00b0c0289180bdce1590 (patch) | |
tree | 57a06bc9317dd24ccf417874c2ecfb10b056adb2 /mailutils/sendmail.c | |
parent | b6ddee242592ffd02c05ae3ed6127c1dd80d7580 (diff) | |
download | busybox-w32-0c68a874e7d996c62c8d00b0c0289180bdce1590.tar.gz busybox-w32-0c68a874e7d996c62c8d00b0c0289180bdce1590.tar.bz2 busybox-w32-0c68a874e7d996c62c8d00b0c0289180bdce1590.zip |
libbb: password/group function helpers rewritten by Tito:
function old new delta
xgetpwuid - 27 +27
uid2uname_utoa - 22 +22
gid2group_utoa - 22 +22
uid2uname - 18 +18
gid2group - 18 +18
buffer_fill_and_print 179 196 +17
print_user 12 24 +12
print_group 12 24 +12
get_cached 89 99 +10
...
print_common 134 120 -14
vlock_main 415 396 -19
logger_main 410 387 -23
crontab_main 642 609 -33
bb_getpwuid 42 - -42
bb_getgrgid 42 - -42
bb_getug 80 - -80
------------------------------------------------------------------------------
(add/remove: 6/3 grow/shrink: 9/11 up/down: 187/-296) Total: -109 bytes
Diffstat (limited to 'mailutils/sendmail.c')
-rw-r--r-- | mailutils/sendmail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mailutils/sendmail.c b/mailutils/sendmail.c index 55555c326..b027f94d2 100644 --- a/mailutils/sendmail.c +++ b/mailutils/sendmail.c | |||
@@ -172,7 +172,7 @@ int sendmail_main(int argc UNUSED_PARAM, char **argv) | |||
172 | // got no sender address? -> use system username as a resort | 172 | // got no sender address? -> use system username as a resort |
173 | if (!(opts & OPT_f)) { | 173 | if (!(opts & OPT_f)) { |
174 | // N.B. IMHO getenv("USER") can be way easily spoofed! | 174 | // N.B. IMHO getenv("USER") can be way easily spoofed! |
175 | G.user = bb_getpwuid(NULL, -1, getuid()); | 175 | G.user = xuid2uname(getuid()); |
176 | opt_from = xasprintf("%s@%s", G.user, domain); | 176 | opt_from = xasprintf("%s@%s", G.user, domain); |
177 | } | 177 | } |
178 | if (ENABLE_FEATURE_CLEAN_UP) | 178 | if (ENABLE_FEATURE_CLEAN_UP) |