Fix some further style nits

Pointed out by: bde
This commit is contained in:
Brian Somers 2001-03-17 10:09:52 +00:00
parent 8a24546c85
commit a9c6c69f89
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=74386

View File

@ -24,9 +24,13 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $FreeBSD$
*/
#if !defined(lint)
static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */
#include <sys/param.h>
#include <libutil.h>
@ -51,11 +55,11 @@ static int isDISP(const char *);
void
trimdomain(char *fullhost, int hostsize)
{
static char domain[MAXHOSTNAMELEN];
static int first = 1;
static size_t dlen;
char *s, *end;
size_t len;
static size_t dlen;
static int first = 1;
static char domain[MAXHOSTNAMELEN];
char *end, *s;
size_t len;
if (first) {
/* XXX: Should we assume that our domain is this persistent ? */
@ -96,7 +100,7 @@ trimdomain(char *fullhost, int hostsize)
static int
isDISP(const char *disp)
{
int res, w;
int res, w;
w = strspn(disp, "0123456789");
res = 0;
@ -110,6 +114,5 @@ isDISP(const char *disp)
res = 1; /* NN.NN */
}
}
return (res);
}