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:
Dan Williams
2004-10-21 19:00:13 +00:00
committed by Bryan W. Clark
parent f8daee7ed9
commit f145f77bf9
3 changed files with 31 additions and 7 deletions

View File

@@ -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))
{