Problem: Can't build on HPUX.
Solution: Fix argument names in vim_stat(). (John Marriott)
* The Vim code assumes a trailing slash is only ignored for a directory.
*/
static int
-illegal_slash(char *name)
+illegal_slash(const char *name)
{
if (name[0] == NUL)
return FALSE; /* no file name is not illegal */
{
/* On Solaris stat() accepts "file/" as if it was "file". Return -1 if
* the name ends in "/" and it's not a directory. */
- return illegal_slash(n) ? -1 : stat(n, p);
+ return illegal_slash(name) ? -1 : stat(name, stp);
}
#endif
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 460,
/**/
459,
/**/