Reflow useragent.c to be 8 char indent. Also rename build_user_agent to user_agent_build_string so that all useragent.c starts user_agent_*

svn path=/trunk/netsurf/; revision=3334
This commit is contained in:
Daniel Silverstone 2007-06-10 18:13:59 +00:00
parent e671fe3707
commit 9ef3a2cd57
1 changed files with 27 additions and 27 deletions

View File

@ -23,7 +23,7 @@ static const char *core_user_agent_string = NULL;
* user agent in HTTP requests.
*/
static void
build_user_agent(void)
user_agent_build_string(void)
{
struct utsname un;
const char *sysname = "Unknown";
@ -63,6 +63,6 @@ const char *
user_agent_string(void)
{
if (core_user_agent_string == NULL)
build_user_agent();
user_agent_build_string();
return core_user_agent_string;
}