chiark / gitweb /
log: out-of-line __log_oom()
[elogind.git] / src / binfmt / binfmt.c
index 28925ac84b488869dfe4f4c6fd42b3ffc19a5819..0399ab75e046f1594f635173b29dbf33d7ec14dc 100644 (file)
@@ -6,16 +6,16 @@
   Copyright 2010 Lennart Poettering
 
   systemd is free software; you can redistribute it and/or modify it
-  under the terms of the GNU General Public License as published by
-  the Free Software Foundation; either version 2 of the License, or
+  under the terms of the GNU Lesser General Public License as published by
+  the Free Software Foundation; either version 2.1 of the License, or
   (at your option) any later version.
 
   systemd is distributed in the hope that it will be useful, but
   WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-  General Public License for more details.
+  Lesser General Public License for more details.
 
-  You should have received a copy of the GNU General Public License
+  You should have received a copy of the GNU Lesser General Public License
   along with systemd; If not, see <http://www.gnu.org/licenses/>.
 ***/
 
@@ -31,6 +31,7 @@
 #include "hashmap.h"
 #include "strv.h"
 #include "util.h"
+#include "conf-files.h"
 
 static int delete_rule(const char *rule) {
         char *x, *fn = NULL, *e;
@@ -130,7 +131,7 @@ int main(int argc, char *argv[]) {
                 for (i = 1; i < argc; i++) {
                         int k;
 
-                        k = apply_file(argv[1], false);
+                        k = apply_file(argv[i], false);
                         if (k < 0 && r == 0)
                                 r = k;
                 }