1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2025-01-11 10:38:12 +00:00

* Fixed issue with SIGPIPE and mpd

* Updated COPYING (with more clarifications)

git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky1@927 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
Brenden Matthews 2007-08-27 20:26:58 +00:00
parent 196235df06
commit 9b71a6cd7b
5 changed files with 13 additions and 5 deletions

View File

@ -2,7 +2,7 @@ Any original torsmo code is licensed under the BSD license (see LICENSE.BSD
for a copy)
All code written since the fork of torsmo is licensed under the GPL (see
LICENSE.GPL for a copy)
LICENSE.GPL for a copy), except where noted differently (such as in portmon code, timed thread code, and audacious code which are LGPL, and prss which is an MIT-style license).
Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
Copyright (c) 2005-2007 Brenden Matthews, Philip Kovacs, et. al. (see AUTHORS)

View File

@ -1,5 +1,9 @@
# $Id$
2007-08-27
* Fixed issue with SIGPIPE and mpd
* Updated COPYING (with more clarifications)
2007-08-14
* Updated vim/nano syntax files.
@ -9,7 +13,7 @@
2007-08-12
* Added var $platform which is similar to $i2c and accommodates the conversion
of many devices from /sys/bus/i2c/devices to /sys/bus/platform/devices.
* Removed config item post_21_kernel since it forced all i2c device lookups
* Removed config item post_21_kernel since it forced all i2c device lookups
to go to /sys/bus/platform/devices and some people may need a mix of both
i2c and platform devices.

View File

@ -1002,8 +1002,8 @@ enum text_object_type {
OBJ_alignr,
OBJ_alignc,
OBJ_i2c,
OBJ_platform,
OBJ_hwmon,
OBJ_platform,
OBJ_hwmon,
#if defined(__linux__)
OBJ_i8k_version,
OBJ_i8k_bios,

View File

@ -183,6 +183,7 @@ struct mpd_s {
int elapsed;
int max_title_len; /* e.g. ${mpd_title 50} */
};
#endif
#ifdef XMMS2

View File

@ -224,5 +224,8 @@ void update_mpd()
return;
}
mpd_freeStatus(status);
// mpd_closeConnection(current_info->conn);
if (current_info->conn) {
mpd_closeConnection(current_info->conn);
current_info->conn = 0;
}
}