diff options
author | peter <peter@FreeBSD.org> | 2005-12-06 02:01:06 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2005-12-06 02:01:06 +0000 |
commit | ce48506ba2c49b3a1814ff2cfa69af48afde0097 (patch) | |
tree | df1864986ef55f883d5af0fcf7eedd628e0a554f /include | |
parent | bf26ea247407f098c35c06dd1766ae53eaa35043 (diff) | |
download | FreeBSD-src-ce48506ba2c49b3a1814ff2cfa69af48afde0097.zip FreeBSD-src-ce48506ba2c49b3a1814ff2cfa69af48afde0097.tar.gz |
Fix ypwhich -m. This should be MFC'ed back at least as far as RELENG_5.
Submitted by: Gil Kloepfer <gil@arlut.utexas.edu>
PR: 64445
Diffstat (limited to 'include')
-rw-r--r-- | include/rpcsvc/yp_prot.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rpcsvc/yp_prot.h b/include/rpcsvc/yp_prot.h index 42431a1..10d5828 100644 --- a/include/rpcsvc/yp_prot.h +++ b/include/rpcsvc/yp_prot.h @@ -148,7 +148,7 @@ struct ypresp_order { }; struct ypmaplist { - char ypml_name[YPMAXMAP + 1]; + char *ypml_name; struct ypmaplist *ypml_next; }; |