Catch this puppy up to RELENG_2_2

This commit is contained in:
Jordan K. Hubbard 1997-03-29 06:44:57 +00:00
parent 83eab616cf
commit 8378bbaded
2 changed files with 10 additions and 6 deletions

View file

@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
* $Id: index.c,v 1.46 1997/03/25 03:07:33 jkh Exp $
* $Id: index.c,v 1.38.2.7 1997/03/27 00:41:00 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@ -216,9 +216,10 @@ readline(FILE *fp, char *buf, int max)
}
int
index_parse(FILE *fp, char *name, char *pathto, char *prefix, char *comment, char *descr, char *maint, char *cats, char *deps)
index_parse(FILE *fp, char *name, char *pathto, char *prefix, char *comment, char *descr, char *maint, char *cats, char *rdeps)
{
char line[1024];
char junk[256];
char *cp;
int i;
@ -233,7 +234,8 @@ index_parse(FILE *fp, char *name, char *pathto, char *prefix, char *comment, cha
cp += copy_to_sep(descr, cp, '|');
cp += copy_to_sep(maint, cp, '|');
cp += copy_to_sep(cats, cp, '|');
(void)copy_to_sep(deps, cp, '|');
cp += copy_to_sep(junk, cp, '|'); /* build deps - not used */
(void)copy_to_sep(rdeps, cp, '|');
/* We're not actually interested in any of the other fields */
return 0;
}

View file

@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
* $Id: index.c,v 1.46 1997/03/25 03:07:33 jkh Exp $
* $Id: index.c,v 1.38.2.7 1997/03/27 00:41:00 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@ -216,9 +216,10 @@ readline(FILE *fp, char *buf, int max)
}
int
index_parse(FILE *fp, char *name, char *pathto, char *prefix, char *comment, char *descr, char *maint, char *cats, char *deps)
index_parse(FILE *fp, char *name, char *pathto, char *prefix, char *comment, char *descr, char *maint, char *cats, char *rdeps)
{
char line[1024];
char junk[256];
char *cp;
int i;
@ -233,7 +234,8 @@ index_parse(FILE *fp, char *name, char *pathto, char *prefix, char *comment, cha
cp += copy_to_sep(descr, cp, '|');
cp += copy_to_sep(maint, cp, '|');
cp += copy_to_sep(cats, cp, '|');
(void)copy_to_sep(deps, cp, '|');
cp += copy_to_sep(junk, cp, '|'); /* build deps - not used */
(void)copy_to_sep(rdeps, cp, '|');
/* We're not actually interested in any of the other fields */
return 0;
}