Add error messages in case of signature error
[oweals/opkg-lede.git] / libopkg / conffile_list.c
index 965c3d0fbd600612d52a254240820e56e6bd2e1e..401c6b408c14229fc36d30fb013788d7cb42bb07 100644 (file)
@@ -42,6 +42,7 @@ int conffile_list_push(conffile_list_t *list, conffile_t *data)
 
 conffile_list_elt_t *conffile_list_pop(conffile_list_t *list)
 {
-    return nv_pair_list_pop(list);
+    conffile_list_elt_t *pos = nv_pair_list_pop(list);
+    return pos;
 }