Compilers will complain the usage of obsolescent variable declarations.
Also it will fix the build problem with sparc64. Submitted by: ed@
This commit is contained in:
parent
409c6f37f9
commit
03740b1f15
@ -47,9 +47,9 @@ __FBSDID("$FreeBSD$");
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
const struct ypalias {
|
||||
static const struct ypalias {
|
||||
char *alias, *name;
|
||||
} static ypaliases[] = {
|
||||
} ypaliases[] = {
|
||||
{ "passwd", "passwd.byname" },
|
||||
{ "master.passwd", "master.passwd.byname" },
|
||||
{ "shadow", "shadow.byname" },
|
||||
|
@ -47,9 +47,9 @@ __FBSDID("$FreeBSD$");
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
const struct ypalias {
|
||||
static const struct ypalias {
|
||||
char *alias, *name;
|
||||
} static ypaliases[] = {
|
||||
} ypaliases[] = {
|
||||
{ "passwd", "passwd.byname" },
|
||||
{ "master.passwd", "master.passwd.byname" },
|
||||
{ "shadow", "shadow.byname" },
|
||||
|
@ -59,9 +59,9 @@ __FBSDID("$FreeBSD$");
|
||||
|
||||
extern bool_t xdr_domainname();
|
||||
|
||||
const struct ypalias {
|
||||
static const struct ypalias {
|
||||
char *alias, *name;
|
||||
} static ypaliases[] = {
|
||||
} ypaliases[] = {
|
||||
{ "passwd", "passwd.byname" },
|
||||
{ "master.passwd", "master.passwd.byname" },
|
||||
{ "shadow", "shadow.byname" },
|
||||
|
Loading…
Reference in New Issue
Block a user