]> git.ipfire.org Git - thirdparty/kmod.git/blobdiff - tools/kmod-lsmod.c
Change licenses
[thirdparty/kmod.git] / tools / kmod-lsmod.c
index 8b5b1ee24087053eef9ba27e1f6d6ecc07db6f3d..493231c9945dd9f8e23462ceb292047a98218250 100644 (file)
@@ -3,19 +3,20 @@
  *
  * Copyright (C) 2011  ProFUSION embedded systems
  *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation version 2.1.
+ * This program 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
+ * (at your option) any later version.
  *
  * This program 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
- * Lesser General Public License for more details.
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
  *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <stddef.h>
@@ -28,6 +29,7 @@
 int main(int argc, char *argv[])
 {
        struct kmod_ctx *ctx;
+       const char *null_config = NULL;
        struct kmod_list *list, *itr;
        int err;
 
@@ -36,7 +38,7 @@ int main(int argc, char *argv[])
                return EXIT_FAILURE;
        }
 
-       ctx = kmod_new(NULL, NULL);
+       ctx = kmod_new(NULL, &null_config);
        if (ctx == NULL) {
                fputs("Error: kmod_new() failed!\n", stderr);
                return EXIT_FAILURE;