Commit 7060f896 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

inetmib1: Don't claim a value is dynamic when it isn't.

parent 62e54bac
......@@ -45,7 +45,7 @@ static void setStringValue(AsnAny *value, BYTE type, DWORD len, BYTE *str)
strValue.asnType = type;
strValue.asnValue.string.stream = str;
strValue.asnValue.string.length = len;
strValue.asnValue.string.dynamic = TRUE;
strValue.asnValue.string.dynamic = FALSE;
SnmpUtilAsnAnyCpy(value, &strValue);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment