projects
/
oweals
/
uci.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
787fb6d
)
add missing check
author
Felix Fietkau
<nbd@openwrt.org>
Mon, 28 Jan 2008 03:37:11 +0000
(
04:37
+0100)
committer
Felix Fietkau
<nbd@openwrt.org>
Mon, 28 Jan 2008 03:37:11 +0000
(
04:37
+0100)
file.c
patch
|
blob
|
history
diff --git
a/file.c
b/file.c
index e9a8f90aad158213818339a1870c2c2fb181255f..772cf255119ebf9156a34458dcafc2540c06f85d 100644
(file)
--- a/
file.c
+++ b/
file.c
@@
-463,7
+463,8
@@
static void uci_export_package(struct uci_package *p, FILE *stream, bool header)
struct uci_context *ctx = p->ctx;
struct uci_element *s, *o;
- fprintf(stream, "package '%s'\n", uci_escape(ctx, p->e.name));
+ if (header)
+ fprintf(stream, "package '%s'\n", uci_escape(ctx, p->e.name));
uci_foreach_element(&p->sections, s) {
struct uci_section *sec = uci_to_section(s);
fprintf(stream, "\nconfig '%s'", uci_escape(ctx, sec->type));