HADOOP-10780. hadoop_user_info_alloc fails on FreeBSD due to incorrect sysconf use (trtrmitya via cmccabe)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1610472 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
aaf757a0e0
commit
6da4b7b4e6
|
@ -22,6 +22,9 @@ Release 2.6.0 - UNRELEASED
|
|||
HADOOP-10507. FsShell setfacl can throw ArrayIndexOutOfBoundsException when
|
||||
no perm is specified. (Stephen Chu and Sathish Gurram via cnauroth)
|
||||
|
||||
HADOOP-10780. hadoop_user_info_alloc fails on FreeBSD due to incorrect
|
||||
sysconf use (Dmitry Sivachenko via Colin Patrick McCabe)
|
||||
|
||||
Release 2.5.0 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
struct hadoop_user_info *hadoop_user_info_alloc(void)
|
||||
{
|
||||
struct hadoop_user_info *uinfo;
|
||||
size_t buf_sz;
|
||||
long buf_sz;
|
||||
char *buf;
|
||||
|
||||
uinfo = calloc(1, sizeof(struct hadoop_user_info));
|
||||
|
|
Loading…
Reference in New Issue