]> mj.ucw.cz Git - pciutils.git/blobdiff - lib/names-cache.c
cxl: Rename caps to be device caps
[pciutils.git] / lib / names-cache.c
index 059311ac20ae6e3cfc8f7b60253409c6b7348516..ba5de6d678f71d18fbb2476dced4f237d3d9b28b 100644 (file)
@@ -1,11 +1,16 @@
 /*
  *     The PCI Library -- ID to Name Cache
  *
- *     Copyright (c) 2008 Martin Mares <mj@ucw.cz>
+ *     Copyright (c) 2008--2009 Martin Mares <mj@ucw.cz>
  *
  *     Can be freely distributed and used under the terms of the GNU GPL.
  */
 
+#include "internal.h"
+#include "names.h"
+
+#ifdef PCI_USE_DNS
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 #include <pwd.h>
 #include <unistd.h>
 
-#include "internal.h"
-#include "names.h"
-
-#ifdef PCI_USE_DNS
-
 static const char cache_version[] = "#PCI-CACHE-1.0";
 
 static char *get_cache_name(struct pci_access *a)
@@ -38,8 +38,9 @@ static char *get_cache_name(struct pci_access *a)
 
   buf = pci_malloc(a, strlen(pw->pw_dir) + strlen(name+1) + 1);
   sprintf(buf, "%s%s", pw->pw_dir, name+1);
-  pci_set_param_internal(a, "net.cache_name", buf, 0);
-  return buf;
+  pci_set_param_internal(a, "net.cache_name", buf, 1);
+  pci_mfree(buf);
+  return pci_get_param(a, "net.cache_name");
 }
 
 int