DSN attribute "Description" was not being copied from the input during DSN
creation in ConfigDSN(). This attribute is now copied into connection info
struct (while parsing input attributes) so that it is later saved (either in
File DSN or user/system DSN entry in Windows registry).
Patch and diagnosis by Nikhil Deshpande
else if (stricmp(attribute, "driver") == 0)
strcpy(ci->drivername, value);
+ else if (stricmp(attribute, INI_KDESC) == 0)
+ strcpy(ci->desc, value);
+
else if (stricmp(attribute, INI_DATABASE) == 0)
strcpy(ci->database, value);