+Index: busybox-1.8.2/archival/libipkg/pkg_parse.c
+===================================================================
+--- busybox-1.8.2.orig/archival/libipkg/pkg_parse.c 2008-01-03 17:25:55.000000000 +0100
++++ busybox-1.8.2/archival/libipkg/pkg_parse.c 2008-01-03 17:30:14.000000000 +0100
+ -85,20 +85,17 @@
+ {
+ char file_name[1048], md5sum[1048]; /* please tell me there aren't any longer that 1k */
+
+- if(!strncmp(raw, "Conffiles:", 10))
++ if(!strncmp(raw, "Conffiles:",10))
+ raw += strlen("Conffiles:");
+
++ while(*raw && isspace(*raw)) raw++;
+ while(*raw && (sscanf(raw, "%s%s", file_name, md5sum) == 2)){
+ conffile_list_append(&pkg->conffiles, file_name, md5sum);
+ /* fprintf(stderr, "%s %s ", file_name, md5sum);*/
+- while (*raw && isspace(*raw)) {
+- raw++;
+- }
+- raw += strlen(file_name);
+- while (*raw && isspace(*raw)) {
+- raw++;
+- }
+- raw += strlen(md5sum);
++ raw += strlen(file_name);
++ while(*raw && isspace(*raw)) raw++;
++ raw += strlen(md5sum);
++ while(*raw && isspace(*raw)) raw++;
+ }
+ }