2004-10-21 Dan Williams <dcbw@redhat.com>
* src/NetworkManagerDevice.c - Don't try to activate/bring up/down unsupported devices * src/NetworkManagerUtils.c - Fix case of PCI ID checks for driver support levels git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@263 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:

committed by
Bryan W. Clark

parent
f8daee7ed9
commit
f145f77bf9
@@ -284,7 +284,7 @@ char *nm_get_device_driver_name (LibHalContext *ctx, NMDevice *dev)
|
||||
char buf[200];
|
||||
char id[9];
|
||||
|
||||
snprintf (&id[0], 9, "%4X%4X", vendor, product);
|
||||
snprintf (&id[0], 9, "%4x%4x", vendor, product);
|
||||
id[8] = '\0';
|
||||
while (fgets (&buf[0], 200, f) && !feof (f))
|
||||
{
|
||||
|
Reference in New Issue
Block a user