summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2003-10-26 05:28:01 +0000
committerPeter Wemm <peter@FreeBSD.org>2003-10-26 05:28:01 +0000
commitba7887c77f3a5d8494a342b2b5c3c8cd9a748fec (patch)
tree819064bacae3ffdf29e9b40f8069e58e601e9247
parent862c47dc3b177a34c8915266abf049aaad329a9d (diff)
Notes
-rw-r--r--usr.bin/ypcat/ypcat.c2
-rw-r--r--usr.bin/ypmatch/ypmatch.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ypcat/ypcat.c b/usr.bin/ypcat/ypcat.c
index 033d343f06369..b3225f4f4d9a6 100644
--- a/usr.bin/ypcat/ypcat.c
+++ b/usr.bin/ypcat/ypcat.c
@@ -48,7 +48,7 @@ __FBSDID("$FreeBSD$");
#include <unistd.h>
struct ypalias {
- const char *alias, *name;
+ char *alias, *name;
} ypaliases[] = {
{ "passwd", "passwd.byname" },
{ "master.passwd", "master.passwd.byname" },
diff --git a/usr.bin/ypmatch/ypmatch.c b/usr.bin/ypmatch/ypmatch.c
index e85f3352667a9..76d0f59926fa1 100644
--- a/usr.bin/ypmatch/ypmatch.c
+++ b/usr.bin/ypmatch/ypmatch.c
@@ -48,7 +48,7 @@ __FBSDID("$FreeBSD$");
#include <unistd.h>
struct ypalias {
- const char *alias, *name;
+ char *alias, *name;
} ypaliases[] = {
{ "passwd", "passwd.byname" },
{ "master.passwd", "master.passwd.byname" },