chiark / gitweb /
cdrom_id: add error message if open() fails
[elogind.git] / udev / lib / libudev.c
index 2d8b7754ffff73abd38df3f2dfe426f0d61398c5..a9baa707995b17f7cf44d15994aa57f36b80d277 100644 (file)
@@ -3,18 +3,10 @@
  *
  * Copyright (C) 2008 Kay Sievers <kay.sievers@vrfy.org>
  *
- * 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ * This library 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; either
+ * version 2.1 of the License, or (at your option) any later version.
  */
 
 #include <stdio.h>
@@ -196,17 +188,17 @@ struct udev *udev_new(void)
                                val++;
                        }
 
-                       if (strcasecmp(key, "udev_log") == 0) {
+                       if (strcmp(key, "udev_log") == 0) {
                                udev_set_log_priority(udev, util_log_priority(val));
                                continue;
                        }
-                       if (strcasecmp(key, "udev_root") == 0) {
+                       if (strcmp(key, "udev_root") == 0) {
                                free(udev->dev_path);
                                udev->dev_path = strdup(val);
                                util_remove_trailing_chars(udev->dev_path, '/');
                                continue;
                        }
-                       if (strcasecmp(key, "udev_rules") == 0) {
+                       if (strcmp(key, "udev_rules") == 0) {
                                free(udev->rules_path);
                                udev->rules_path = strdup(val);
                                util_remove_trailing_chars(udev->rules_path, '/');