ls: Print output of supported uri to fp rather than stdout.

Since there are no other callers than stdout, this wouldn't be a
problem, but since there maybe in the future go ahead and fix it.
This commit is contained in:
Avuton Olrich 2009-03-03 13:07:34 -08:00
parent 3b76ca7186
commit 3e5a445467

View File

@ -57,7 +57,7 @@ void print_supported_uri_schemes_to_fp(FILE *fp)
fprintf(fp, "%s ", *prefixes);
prefixes++;
}
puts("\n");
fprintf(fp,"\n");
}
void print_supported_uri_schemes(struct client *client)