Remove unused function.
authorgraham.gower <graham.gower@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>
Tue, 17 Nov 2009 01:37:24 +0000 (01:37 +0000)
committergraham.gower <graham.gower@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>
Tue, 17 Nov 2009 01:37:24 +0000 (01:37 +0000)
git-svn-id: http://opkg.googlecode.com/svn/trunk@322 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358

libopkg/pkg_extract.c
libopkg/pkg_extract.h

index 7f22ff32db8401f996a0cd3d1e353fb6a3ea5897..4257d59806e433014c2be529a995556ae03c33d9 100644 (file)
@@ -92,67 +92,6 @@ int pkg_extract_data_files_to_dir(pkg_t *pkg, const char *dir)
     return 0;
 }
 
     return 0;
 }
 
-int pkg_extract_data_file_names_to_file(pkg_t *pkg, const char *file_name)
-{
-     int err=0;
-     char *line, *data_file;
-     FILE *file;
-     FILE *tmp;
-
-     file = fopen(file_name, "w");
-     if (file == NULL) {
-         fprintf(stderr, "%s: ERROR: Failed to open %s for writing.\n",
-                 __FUNCTION__, file_name);
-         return EINVAL;
-     }
-
-     tmp = tmpfile();
-     if (pkg->installed_files) {
-         str_list_elt_t *elt;
-         for (elt = str_list_first(pkg->installed_files); elt; elt = str_list_next(pkg->installed_files, elt)) {
-              fprintf(file, "%s\n", (char *)elt->data);
-         }
-     } else {
-         err = pkg_extract_data_file_names_to_stream(pkg, tmp);
-         if (err) {
-              fclose(file);
-              fclose(tmp);
-              return err;
-         }
-
-         /* Fixup data file names by removing the initial '.' */
-         rewind(tmp);
-         while (1) {
-              line = file_read_line_alloc(tmp);
-              if (line == NULL) {
-                   break;
-              }
-
-              data_file = line;
-              if (*data_file == '.') {
-                   data_file++;
-              }
-
-              if (*data_file != '/') {
-                   fputs("/", file);
-              }
-
-              /* I have no idea why, but this is what dpkg does */
-              if (strcmp(data_file, "/\n") == 0) {
-                   fputs("/.\n", file);
-              } else {
-                   fputs(data_file, file);
-              }
-              free(line);
-              line=NULL;
-         }
-     }
-     fclose(tmp);
-     fclose(file);
-
-     return err;
-}
-
 int pkg_extract_data_file_names_to_stream(pkg_t *pkg, FILE *file)
 {
     char *buffer = NULL;
 int pkg_extract_data_file_names_to_stream(pkg_t *pkg, FILE *file)
 {
     char *buffer = NULL;
index f5be157fbc3365d0d36f6909362c7fd0f176819d..b83b41b38ebce24ac485f8cdbb90f070cbca4579 100644 (file)
@@ -26,7 +26,6 @@ int pkg_extract_control_files_to_dir_with_prefix(pkg_t *pkg,
                                                 const char *dir,
                                                 const char *prefix);
 int pkg_extract_data_files_to_dir(pkg_t *pkg, const char *dir);
                                                 const char *dir,
                                                 const char *prefix);
 int pkg_extract_data_files_to_dir(pkg_t *pkg, const char *dir);
-int pkg_extract_data_file_names_to_file(pkg_t *pkg, const char *file_name);
 int pkg_extract_data_file_names_to_stream(pkg_t *pkg, FILE *file);
 
 #endif
 int pkg_extract_data_file_names_to_stream(pkg_t *pkg, FILE *file);
 
 #endif