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

oldstable
Juan Lang 2009-12-07 13:12:36 -08:00 committed by Alexandre Julliard
parent 62e54bacba
commit 7060f8961a
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}