[
https://issues.apache.org/jira/browse/HADOOP-11639?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14343084#comment-14343084
]
Remus Rusanu commented on HADOOP-11639:
---------------------------------------
My patch overwrites some changes from [~kirankumarmr] for HADOOP-9922. this is
simply because originally I did all the changes on an old trunk. After the pull
I resolved the merge by taking my changes on the conflict. Specifically, in
HADOOP-9922:
{code}
hadoop-common-project/hadoop-common/src/main/winutils/service.c
@@ -206,7 +206,7 @@ DWORD ValidateConfigurationFile() {
- int crt = 0, crtSid = 0;
+ unsigned int crt = 0, crtSid = 0;
{code}
while on my patch is:
{code}
hadoop-common-project/hadoop-common/src/main/winutils/service.c
@@ -206,7 +206,7 @@ DWORD ValidateConfigurationFile() {
- unsigned int crt = 0, crtSid = 0;
+ DWORD crt = 0;
{code}
> Clean up Windows native code compilation warnings related to Windows Secure
> Container Executor.
> -----------------------------------------------------------------------------------------------
>
> Key: HADOOP-11639
> URL: https://issues.apache.org/jira/browse/HADOOP-11639
> Project: Hadoop Common
> Issue Type: Bug
> Components: native
> Affects Versions: 2.6.0
> Reporter: Chris Nauroth
> Assignee: Remus Rusanu
> Attachments: HADOOP-11639.00.patch, HADOOP-11639.01.patch
>
>
> YARN-2198 introduced additional code in Hadoop Common to support the
> NodeManager {{WindowsSecureContainerExecutor}}. The patch introduced new
> compilation warnings that we need to investigate and resolve.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)