diff options
| author | Lars Hjemli <hjemli@gmail.com> | 2009-08-19 17:47:24 +0200 | 
|---|---|---|
| committer | Lars Hjemli <hjemli@gmail.com> | 2009-08-24 10:22:57 +0200 | 
| commit | 302a3efa261b1b6127b2a2189e25ab45019b1b54 (patch) | |
| tree | da2be8819777044cd16887da17528b1937be55ee | |
| parent | cache.h: export hash_str() (diff) | |
| download | cgit-302a3efa261b1b6127b2a2189e25ab45019b1b54.tar.gz cgit-302a3efa261b1b6127b2a2189e25ab45019b1b54.tar.bz2 cgit-302a3efa261b1b6127b2a2189e25ab45019b1b54.zip | |
cgit.c: make print_repolist() and print_repo() reusable for caching
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
| -rw-r--r-- | cgit.c | 24 | 
1 files changed, 12 insertions, 12 deletions
| @@ -416,26 +416,26 @@ int cmp_repos(const void *a, const void *b)  	return strcmp(ra->url, rb->url);  } -void print_repo(struct cgit_repo *repo) +void print_repo(FILE *f, struct cgit_repo *repo)  { -	printf("repo.url=%s\n", repo->url); -	printf("repo.name=%s\n", repo->name); -	printf("repo.path=%s\n", repo->path); +	fprintf(f, "repo.url=%s\n", repo->url); +	fprintf(f, "repo.name=%s\n", repo->name); +	fprintf(f, "repo.path=%s\n", repo->path);  	if (repo->owner) -		printf("repo.owner=%s\n", repo->owner); +		fprintf(f, "repo.owner=%s\n", repo->owner);  	if (repo->desc) -		printf("repo.desc=%s\n", repo->desc); +		fprintf(f, "repo.desc=%s\n", repo->desc);  	if (repo->readme) -		printf("repo.readme=%s\n", repo->readme); -	printf("\n"); +		fprintf(f, "repo.readme=%s\n", repo->readme); +	fprintf(f, "\n");  } -void print_repolist(struct cgit_repolist *list) +void print_repolist(FILE *f, struct cgit_repolist *list, int start)  {  	int i; -	for(i = 0; i < list->count; i++) -		print_repo(&list->repos[i]); +	for(i = start; i < list->count; i++) +		print_repo(f, &list->repos[i]);  } @@ -482,7 +482,7 @@ static void cgit_parse_args(int argc, const char **argv)  	if (scan) {  		qsort(cgit_repolist.repos, cgit_repolist.count,  			sizeof(struct cgit_repo), cmp_repos); -		print_repolist(&cgit_repolist); +		print_repolist(stdout, &cgit_repolist, 0);  		exit(0);  	}  } | 
