Fix the following clang 3.6.0 warning in contrib/amd/hlfsd/homedir.c:
authordim <dim@FreeBSD.org>
Wed, 28 Jan 2015 18:19:25 +0000 (18:19 +0000)
committerdim <dim@FreeBSD.org>
Wed, 28 Jan 2015 18:19:25 +0000 (18:19 +0000)
commit110aa2a0d09a6283b549938eabee76423a2e96f5
treecce9f5536d56acc3036dbc7888f72418c38dae17
parent4d4e2ba1b411d23dca952f319f08a3a14dac4fc7
Fix the following clang 3.6.0 warning in contrib/amd/hlfsd/homedir.c:

contrib/amd/hlfsd/homedir.c:497:8: error: address of array 'buf' will
always evaluate to 'true' [-Werror,-Wpointer-bool-conversion]
  if (!buf || buf[0] == '\0')
      ~^~~

In the affected function, 'buf' is declared as an array of char, so it
can never be null.  Remove the unecessary check.
contrib/amd/hlfsd/homedir.c