cmdutils: Rename read_file to cmdutils_read_file

This symbol name clashes with a symbol in gnutls, if linking
statically to that library.

Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
Martin Storsjö
2011-02-07 11:49:37 +02:00
parent 45235d69c2
commit 02170990fd
4 changed files with 4 additions and 4 deletions

View File

@ -785,7 +785,7 @@ int read_yesno(void)
return yesno;
}
int read_file(const char *filename, char **bufptr, size_t *size)
int cmdutils_read_file(const char *filename, char **bufptr, size_t *size)
{
int ret;
FILE *f = fopen(filename, "rb");