summaryrefslogtreecommitdiff
path: root/usr.sbin/afs
diff options
context:
space:
mode:
authorHans Insulander <hin@cvs.openbsd.org>2003-08-05 11:05:14 +0000
committerHans Insulander <hin@cvs.openbsd.org>2003-08-05 11:05:14 +0000
commit028907f57d111267c5c2dc45c4626d7c38803367 (patch)
treec74361134ff624e0eb653adaf4ac9021244b2a6b /usr.sbin/afs
parent4d65caede88f071a592e0a9e0dd1ec28ade13487 (diff)
TPOINTER -> YDR_TPOINTER
Somehow, cvs seems to have to have missed this change, probably a merge error.
Diffstat (limited to 'usr.sbin/afs')
-rw-r--r--usr.sbin/afs/src/ydr/output.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/afs/src/ydr/output.c b/usr.sbin/afs/src/ydr/output.c
index 7f80a17587d..c6f259acc24 100644
--- a/usr.sbin/afs/src/ydr/output.c
+++ b/usr.sbin/afs/src/ydr/output.c
@@ -1900,7 +1900,7 @@ genencodein (List *list, Listitem *item, void *arg)
FILE *f = (FILE *)arg;
if (a->argtype == TIN || a->argtype == TINOUT) {
- if (a->type->type == TPOINTER) {
+ if (a->type->type == YDR_TPOINTER) {
size_t len = strlen (a->name) + 4;
char *tmp = (char *)emalloc (len);
@@ -1921,7 +1921,7 @@ gendecodeout (List *list, Listitem *item, void *arg)
FILE *f = (FILE *)arg;
if (a->argtype == TOUT || a->argtype == TINOUT) {
- if (a->type->type == TPOINTER) {
+ if (a->type->type == YDR_TPOINTER) {
size_t len = strlen(a->name) + 4;
char *tmp = (char *)emalloc (len);