]> git.ipfire.org Git - thirdparty/lldpd.git/commitdiff
Add changelog entry for use of /etc/os-release
authorVincent Bernat <bernat@luffy.cx>
Sat, 28 May 2011 14:46:47 +0000 (16:46 +0200)
committerVincent Bernat <bernat@luffy.cx>
Sat, 28 May 2011 14:46:47 +0000 (16:46 +0200)
CHANGELOG
src/lldpd.c

index 6e554c341041cf1a8b529938f923ec286e03805f..b62ae9dd54eeae75b54b187cff44efea6a8f2741 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,8 @@
+lldpd (0.5.4)
+  * Features:
+    + Get OS information from /etc/os-release if available. Patch from
+      Michael Tremer.
+
 lldpd (0.5.3)
   * Fixes:
     + Allow root to change configuration of lldpd when lldpctl has suid set.
index 1641f13da588f16dbb6284d1b0b0cc35ec159ea2..8253d7e02fb8e167c9bd0960b35e32ba765b07b6 100644 (file)
@@ -561,7 +561,7 @@ lldpd_get_os_release() {
 
        FILE *fp = fopen("/etc/os-release", "r");
        if (!fp) {
-               LLOG_WARN("Could not open /etc/os-release to read system information");
+               LLOG_WARN("could not open /etc/os-release");
                return NULL;
        }