mirror of
https://github.com/sheumann/hush.git
synced 2024-12-22 14:30:31 +00:00
Fix for hostname -s, by Stephan Linz
This commit is contained in:
parent
59870e89ae
commit
3ff3f4ac35
@ -1,6 +1,6 @@
|
|||||||
/* vi: set sw=4 ts=4: */
|
/* vi: set sw=4 ts=4: */
|
||||||
/*
|
/*
|
||||||
* $Id: hostname.c,v 1.33 2002/10/18 22:13:23 andersen Exp $
|
* $Id: hostname.c,v 1.34 2002/11/10 22:07:48 bug1 Exp $
|
||||||
* Mini hostname implementation for busybox
|
* Mini hostname implementation for busybox
|
||||||
*
|
*
|
||||||
* Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
|
* Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
|
||||||
@ -104,7 +104,7 @@ int hostname_main(int argc, char **argv)
|
|||||||
if (p != NULL) {
|
if (p != NULL) {
|
||||||
*p = 0;
|
*p = 0;
|
||||||
}
|
}
|
||||||
puts(buf);
|
puts(hp->h_name);
|
||||||
} else if (type == 'd') {
|
} else if (type == 'd') {
|
||||||
if (p) puts(p + 1);
|
if (p) puts(p + 1);
|
||||||
} else if (type == 'i') {
|
} else if (type == 'i') {
|
||||||
|
Loading…
Reference in New Issue
Block a user