summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/pool_fileconflicts.c7
-rw-r--r--ext/pool_fileconflicts.h7
-rw-r--r--ext/solv_xfopen.h7
-rw-r--r--tools/dumpsolv.c8
4 files changed, 25 insertions, 4 deletions
diff --git a/ext/pool_fileconflicts.c b/ext/pool_fileconflicts.c
index 5c1a4c8..b835790 100644
--- a/ext/pool_fileconflicts.c
+++ b/ext/pool_fileconflicts.c
@@ -1,3 +1,10 @@
+/*
+ * Copyright (c) 2009-2012, Novell Inc.
+ *
+ * This program is licensed under the BSD license, read LICENSE.BSD
+ * for further information
+ */
+
#include <stdio.h>
#include <sys/stat.h>
diff --git a/ext/pool_fileconflicts.h b/ext/pool_fileconflicts.h
index f1c2282..f8be98d 100644
--- a/ext/pool_fileconflicts.h
+++ b/ext/pool_fileconflicts.h
@@ -1,3 +1,10 @@
+/*
+ * Copyright (c) 2009-2012, Novell Inc.
+ *
+ * This program is licensed under the BSD license, read LICENSE.BSD
+ * for further information
+ */
+
#ifndef POOL_FILECONFLICTS_H
#define POOL_FILECONFLICTS_H
diff --git a/ext/solv_xfopen.h b/ext/solv_xfopen.h
index e722bf2..31e24d3 100644
--- a/ext/solv_xfopen.h
+++ b/ext/solv_xfopen.h
@@ -1,3 +1,10 @@
+/*
+ * Copyright (c) 2009-2012, Novell Inc.
+ *
+ * This program is licensed under the BSD license, read LICENSE.BSD
+ * for further information
+ */
+
#ifndef SOLV_XFOPEN_H
#define SOLV_XFOPEN_H
diff --git a/tools/dumpsolv.c b/tools/dumpsolv.c
index 681e98b..64a9a79 100644
--- a/tools/dumpsolv.c
+++ b/tools/dumpsolv.c
@@ -341,16 +341,16 @@ int main(int argc, char **argv)
printf ("\nSearchresults:\n");
Dataiterator di;
dataiterator_init(&di, pool, 0, 0, 0, "3", SEARCH_SUB | SEARCH_SUBSTRING | SEARCH_FILES);
- //int count = 0;
+ /* int count = 0; */
while (dataiterator_step(&di))
{
printf("%d:", di.solvid);
dump_attr(repo, di.data, di.key, &di.kv);
/*if (di.solvid == 4 && count++ == 0)
dataiterator_jump_to_solvable(&di, pool->solvables + 3);*/
- //dataiterator_skip_attribute(&di);
- //dataiterator_skip_solvable(&di);
- //dataiterator_skip_repo(&di);
+ /* dataiterator_skip_attribute(&di); */
+ /* dataiterator_skip_solvable(&di); */
+ /* dataiterator_skip_repo(&di); */
}
#endif
pool_free(pool);