aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-03-24 02:18:03 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-03-24 02:18:03 +0000
commitc693840fe81e59a308e0c6e3d2bafae728d1caff (patch)
tree10924edda7796e5242e460364c2f3587f2841c0f /libbb
parent42cc304e9084843ad6b153afaf4b3f6c6528c364 (diff)
downloadbusybox-c693840fe81e59a308e0c6e3d2bafae728d1caff.tar.gz
*: whitespace fixes, no code changes
Diffstat (limited to 'libbb')
-rw-r--r--libbb/login.c2
-rw-r--r--libbb/safe_gethostname.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/libbb/login.c b/libbb/login.c
index a711a5437..a5be2c8c9 100644
--- a/libbb/login.c
+++ b/libbb/login.c
@@ -89,7 +89,7 @@ void print_login_issue(const char *issue_file, const char *tty)
void print_login_prompt(void)
{
char *hostname = safe_gethostname();
-
+
fputs(hostname, stdout);
fputs(LOGIN, stdout);
fflush(stdout);
diff --git a/libbb/safe_gethostname.c b/libbb/safe_gethostname.c
index 1290f4ca7..3b24edba5 100644
--- a/libbb/safe_gethostname.c
+++ b/libbb/safe_gethostname.c
@@ -45,7 +45,7 @@ char *safe_gethostname(void)
* name and an 8-byte nodename), but this is true on Linux. The same holds
* for setdomainname(2) and the domainname field.
*/
-
+
/* Uname can fail only if you pass a bad pointer to it. */
uname(&uts);