Hello community,

here is the log from the commit of package libdmapsharing for openSUSE:Factory 
checked in at 2017-06-23 09:18:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libdmapsharing (Old)
 and      /work/SRC/openSUSE:Factory/.libdmapsharing.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libdmapsharing"

Fri Jun 23 09:18:44 2017 rev:27 rq:505743 version:2.9.38

Changes:
--------
--- /work/SRC/openSUSE:Factory/libdmapsharing/libdmapsharing.changes    
2017-03-12 20:05:43.255146100 +0100
+++ /work/SRC/openSUSE:Factory/.libdmapsharing.new/libdmapsharing.changes       
2017-06-23 09:19:03.836507794 +0200
@@ -1,0 +2,8 @@
+Thu Jun 22 15:28:34 UTC 2017 - zai...@opensuse.org
+
+- Update to version 2.9.38:
+  + After failing to get preferred port, try both IPV4 and IPV6.
+  + Fix bad error handling on soup_server_get_uris (Clang
+    scan-build).
+
+-------------------------------------------------------------------

Old:
----
  libdmapsharing-2.9.37.tar.gz

New:
----
  libdmapsharing-2.9.38.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ libdmapsharing.spec ++++++
--- /var/tmp/diff_new_pack.1bLu1N/_old  2017-06-23 09:19:04.620397027 +0200
+++ /var/tmp/diff_new_pack.1bLu1N/_new  2017-06-23 09:19:04.624396462 +0200
@@ -18,7 +18,7 @@
 
 
 Name:           libdmapsharing
-Version:        2.9.37
+Version:        2.9.38
 Release:        0
 Summary:        Library implementing the Digital Media Access Protocol family
 License:        LGPL-2.1+

++++++ libdmapsharing-2.9.37.tar.gz -> libdmapsharing-2.9.38.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libdmapsharing-2.9.37/ChangeLog 
new/libdmapsharing-2.9.38/ChangeLog
--- old/libdmapsharing-2.9.37/ChangeLog 2016-11-12 03:14:44.000000000 +0100
+++ new/libdmapsharing-2.9.38/ChangeLog 2017-06-05 02:04:42.000000000 +0200
@@ -1,3 +1,27 @@
+commit 73232464f9af3fe94965f4478e3bb443a31b7927
+Author: W. Michael Petullo <m...@flyn.org>
+Date:   Sun Jun 4 20:03:50 2017 -0400
+
+    Bump version number
+    
+    Signed-off-by: W. Michael Petullo <m...@flyn.org>
+
+commit edbeeba31ff150cd8ec048dd8149bbcf7f5bcefd
+Author: W. Michael Petullo <m...@flyn.org>
+Date:   Sun Jun 4 20:03:11 2017 -0400
+
+    After failing to get preferred port, try both IPV4 and IPV6
+    
+    Signed-off-by: W. Michael Petullo <m...@flyn.org>
+
+commit e9fe3e0416e7491eda100f372c7a3cd97183f60b
+Author: W. Michael Petullo <m...@flyn.org>
+Date:   Sun Jan 8 19:49:38 2017 -0500
+
+    Fix bad error handling on soup_server_get_uris (Clang scan-build)
+    
+    Signed-off-by: W. Michael Petullo <m...@flyn.org>
+
 commit fd14b00fcfe33312ee2320c5d728f89e3671db21
 Author: W. Michael Petullo <m...@flyn.org>
 Date:   Fri Nov 11 21:13:20 2016 -0500
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libdmapsharing-2.9.37/Makefile.in 
new/libdmapsharing-2.9.38/Makefile.in
--- old/libdmapsharing-2.9.37/Makefile.in       2016-11-12 03:14:37.000000000 
+0100
+++ new/libdmapsharing-2.9.38/Makefile.in       2017-06-05 02:04:37.000000000 
+0200
@@ -702,7 +702,7 @@
          ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
        || chmod -R a+r "$(distdir)"
 dist-gzip: distdir
-       tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c 
>$(distdir).tar.gz
+       tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c 
>$(distdir).tar.gz
        $(am__post_remove_distdir)
 
 dist-bzip2: distdir
@@ -728,7 +728,7 @@
        @echo WARNING: "Support for shar distribution archives is" \
                       "deprecated." >&2
        @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
-       shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
+       shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz
        $(am__post_remove_distdir)
 
 dist-zip: distdir
@@ -746,7 +746,7 @@
 distcheck: dist
        case '$(DIST_ARCHIVES)' in \
        *.tar.gz*) \
-         GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
+         eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\
        *.tar.bz2*) \
          bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
        *.tar.lz*) \
@@ -756,7 +756,7 @@
        *.tar.Z*) \
          uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
        *.shar.gz*) \
-         GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
+         eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
        *.zip*) \
          unzip $(distdir).zip ;;\
        esac
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libdmapsharing-2.9.37/aclocal.m4 
new/libdmapsharing-2.9.38/aclocal.m4
--- old/libdmapsharing-2.9.37/aclocal.m4        2016-11-12 03:14:34.000000000 
+0100
+++ new/libdmapsharing-2.9.38/aclocal.m4        2017-06-05 02:04:34.000000000 
+0200
@@ -21,7 +21,7 @@
 To do so, use the procedure documented by the package, typically 
'autoreconf'.])])
 
 dnl pkg.m4 - Macros to locate and utilise pkg-config.   -*- Autoconf -*-
-dnl serial 11 (pkg-config-0.29)
+dnl serial 11 (pkg-config-0.29.1)
 dnl
 dnl Copyright © 2004 Scott James Remnant <sc...@netsplit.com>.
 dnl Copyright © 2012-2015 Dan Nicholson <dbn.li...@gmail.com>
@@ -63,7 +63,7 @@
 dnl See the "Since" comment for each macro you use to see what version
 dnl of the macros you require.
 m4_defun([PKG_PREREQ],
-[m4_define([PKG_MACROS_VERSION], [0.29])
+[m4_define([PKG_MACROS_VERSION], [0.29.1])
 m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1,
     [m4_fatal([pkg.m4 version $1 or higher is required but 
]PKG_MACROS_VERSION[ found])])
 ])dnl PKG_PREREQ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libdmapsharing-2.9.37/configure 
new/libdmapsharing-2.9.38/configure
--- old/libdmapsharing-2.9.37/configure 2016-11-12 03:14:35.000000000 +0100
+++ new/libdmapsharing-2.9.38/configure 2017-06-05 02:04:35.000000000 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for libdmapsharing 2.9.37.
+# Generated by GNU Autoconf 2.69 for libdmapsharing 2.9.38.
 #
 #
 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@@ -647,8 +647,8 @@
 # Identity of this package.
 PACKAGE_NAME='libdmapsharing'
 PACKAGE_TARNAME='libdmapsharing'
-PACKAGE_VERSION='2.9.37'
-PACKAGE_STRING='libdmapsharing 2.9.37'
+PACKAGE_VERSION='2.9.38'
+PACKAGE_STRING='libdmapsharing 2.9.38'
 PACKAGE_BUGREPORT=''
 PACKAGE_URL=''
 
@@ -1509,7 +1509,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures libdmapsharing 2.9.37 to adapt to many kinds of 
systems.
+\`configure' configures libdmapsharing 2.9.38 to adapt to many kinds of 
systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1579,7 +1579,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of libdmapsharing 2.9.37:";;
+     short | recursive ) echo "Configuration of libdmapsharing 2.9.38:";;
    esac
   cat <<\_ACEOF
 
@@ -1749,7 +1749,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-libdmapsharing configure 2.9.37
+libdmapsharing configure 2.9.38
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2114,7 +2114,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by libdmapsharing $as_me 2.9.37, which was
+It was created by libdmapsharing $as_me 2.9.38, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -3034,7 +3034,7 @@
 
 # Define the identity of the package.
  PACKAGE='libdmapsharing'
- VERSION='2.9.37'
+ VERSION='2.9.38'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -16076,7 +16076,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by libdmapsharing $as_me 2.9.37, which was
+This file was extended by libdmapsharing $as_me 2.9.38, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -16142,7 +16142,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-libdmapsharing config.status 2.9.37
+libdmapsharing config.status 2.9.38
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libdmapsharing-2.9.37/configure.ac 
new/libdmapsharing-2.9.38/configure.ac
--- old/libdmapsharing-2.9.37/configure.ac      2016-11-12 03:13:10.000000000 
+0100
+++ new/libdmapsharing-2.9.38/configure.ac      2017-06-05 02:03:23.000000000 
+0200
@@ -1,4 +1,4 @@
-AC_INIT(libdmapsharing, 2.9.37)
+AC_INIT(libdmapsharing, 2.9.38)
 
 dnl when going to/from release please set the nano (fourth number) right !
 dnl releases only do Wall, cvs and prerelease does Werror too
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libdmapsharing-2.9.37/doc/html/api-index-full.html 
new/libdmapsharing-2.9.38/doc/html/api-index-full.html
--- old/libdmapsharing-2.9.37/doc/html/api-index-full.html      2016-11-12 
03:14:47.000000000 +0100
+++ new/libdmapsharing-2.9.38/doc/html/api-index-full.html      2017-06-05 
02:04:46.000000000 +0200
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>API Index: libdmapsharing-3.0 Reference Manual</title>
-<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
 <link rel="home" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="up" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="prev" href="object-tree.html" title="Object Hierarchy">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libdmapsharing-2.9.37/doc/html/ch01.html 
new/libdmapsharing-2.9.38/doc/html/ch01.html
--- old/libdmapsharing-2.9.37/doc/html/ch01.html        2016-11-12 
03:14:47.000000000 +0100
+++ new/libdmapsharing-2.9.38/doc/html/ch01.html        2017-06-05 
02:04:46.000000000 +0200
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Libdmapsharing overview: libdmapsharing-3.0 Reference Manual</title>
-<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
 <link rel="home" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="up" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="prev" href="index.html" title="libdmapsharing-3.0 Reference Manual">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libdmapsharing-2.9.37/doc/html/deprecated-api-index.html 
new/libdmapsharing-2.9.38/doc/html/deprecated-api-index.html
--- old/libdmapsharing-2.9.37/doc/html/deprecated-api-index.html        
2016-11-12 03:14:47.000000000 +0100
+++ new/libdmapsharing-2.9.38/doc/html/deprecated-api-index.html        
2017-06-05 02:04:46.000000000 +0200
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Index of deprecated API: libdmapsharing-3.0 Reference Manual</title>
-<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
 <link rel="home" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="up" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="prev" href="api-index-full.html" title="API Index">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libdmapsharing-2.9.37/doc/html/index.html 
new/libdmapsharing-2.9.38/doc/html/index.html
--- old/libdmapsharing-2.9.37/doc/html/index.html       2016-11-12 
03:14:47.000000000 +0100
+++ new/libdmapsharing-2.9.38/doc/html/index.html       2017-06-05 
02:04:46.000000000 +0200
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>libdmapsharing-3.0 Reference Manual: libdmapsharing-3.0 Reference 
Manual</title>
-<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
 <link rel="home" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="next" href="ch01.html" title="Libdmapsharing overview">
 <meta name="generator" content="GTK-Doc V1.25 (XML mode)">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-DAAPRecord.html 
new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-DAAPRecord.html
--- old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-DAAPRecord.html       
2016-11-12 03:14:47.000000000 +0100
+++ new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-DAAPRecord.html       
2017-06-05 02:04:46.000000000 +0200
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>DAAPRecord: libdmapsharing-3.0 Reference Manual</title>
-<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
 <link rel="home" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="up" href="ch01.html" title="Libdmapsharing overview">
 <link rel="prev" href="libdmapsharing-3.0-daap-connection.html" 
title="daap-connection">
@@ -33,7 +33,7 @@
 </tr></table></div>
 <div class="refsect1">
 <a name="libdmapsharing-3.0-DAAPRecord.functions"></a><h2>Functions</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="functions_return">
 <col class="functions_name">
@@ -68,7 +68,7 @@
 </div>
 <div class="refsect1">
 <a name="libdmapsharing-3.0-DAAPRecord.other"></a><h2>Types and Values</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="name">
 <col class="description">
@@ -92,7 +92,7 @@
 daap_record_itunes_compat (<em class="parameter"><code><span 
class="type">DAAPRecord</span> *record</code></em>);</pre>
 <div class="refsect3">
 <a name="daap-record-itunes-compat.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -118,7 +118,7 @@
                   <em class="parameter"><code><span class="type">GError</span> 
**err</code></em>);</pre>
 <div class="refsect3">
 <a name="daap-record-read.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -155,7 +155,7 @@
 to album. Suitable to sort lists of albums.</p>
 <div class="refsect3">
 <a name="daap-record-cmp-by-album.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-DACPPlayer.html 
new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-DACPPlayer.html
--- old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-DACPPlayer.html       
2016-11-12 03:14:47.000000000 +0100
+++ new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-DACPPlayer.html       
2017-06-05 02:04:46.000000000 +0200
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>DACPPlayer: libdmapsharing-3.0 Reference Manual</title>
-<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
 <link rel="home" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="up" href="ch01.html" title="Libdmapsharing overview">
 <link rel="prev" href="libdmapsharing-3.0-dacp-connection.html" 
title="dacp-connection">
@@ -34,7 +34,7 @@
 </tr></table></div>
 <div class="refsect1">
 <a name="libdmapsharing-3.0-DACPPlayer.functions"></a><h2>Functions</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="functions_return">
 <col class="functions_name">
@@ -109,7 +109,7 @@
 </div>
 <div class="refsect1">
 <a name="libdmapsharing-3.0-DACPPlayer.other"></a><h2>Types and Values</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="name">
 <col class="description">
@@ -150,7 +150,7 @@
 dacp_player_now_playing_record (<em class="parameter"><code><span 
class="type">DACPPlayer</span> *player</code></em>);</pre>
 <div class="refsect3">
 <a name="dacp-player-now-playing-record.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -173,7 +173,7 @@
                                  <em class="parameter"><code><span 
class="type">guint</span> height</code></em>);</pre>
 <div class="refsect3">
 <a name="dacp-player-now-playing-artwork.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -206,7 +206,7 @@
 dacp_player_play_pause (<em class="parameter"><code><span 
class="type">DACPPlayer</span> *player</code></em>);</pre>
 <div class="refsect3">
 <a name="dacp-player-play-pause.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -227,7 +227,7 @@
 dacp_player_pause (<em class="parameter"><code><span 
class="type">DACPPlayer</span> *player</code></em>);</pre>
 <div class="refsect3">
 <a name="dacp-player-pause.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -248,7 +248,7 @@
 dacp_player_next_item (<em class="parameter"><code><span 
class="type">DACPPlayer</span> *player</code></em>);</pre>
 <div class="refsect3">
 <a name="dacp-player-next-item.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -277,7 +277,7 @@
 dacp_player_cue_clear (<em class="parameter"><code><span 
class="type">DACPPlayer</span> *player</code></em>);</pre>
 <div class="refsect3">
 <a name="dacp-player-cue-clear.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -300,7 +300,7 @@
                       <em class="parameter"><code><span 
class="type">guint</span> index</code></em>);</pre>
 <div class="refsect3">
 <a name="dacp-player-cue-play.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -335,7 +335,7 @@
 </p>
 <div class="refsect3">
 <a name="DACPRepeatState.members"></a><h4>Members</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="300px" class="enum_members_name">
 <col class="enum_members_description">
@@ -368,7 +368,7 @@
 </p>
 <div class="refsect3">
 <a name="DACPPlayState.members"></a><h4>Members</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="300px" class="enum_members_name">
 <col class="enum_members_description">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-DMAPContainerDb.html 
new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-DMAPContainerDb.html
--- old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-DMAPContainerDb.html  
2016-11-12 03:14:47.000000000 +0100
+++ new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-DMAPContainerDb.html  
2017-06-05 02:04:46.000000000 +0200
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>DMAPContainerDb: libdmapsharing-3.0 Reference Manual</title>
-<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
 <link rel="home" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="up" href="ch01.html" title="Libdmapsharing overview">
 <link rel="prev" href="libdmapsharing-3.0-dmap-connection.html" 
title="dmap-connection">
@@ -33,7 +33,7 @@
 </tr></table></div>
 <div class="refsect1">
 <a name="libdmapsharing-3.0-DMAPContainerDb.functions"></a><h2>Functions</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="functions_return">
 <col class="functions_name">
@@ -76,7 +76,7 @@
 </div>
 <div class="refsect1">
 <a name="libdmapsharing-3.0-DMAPContainerDb.other"></a><h2>Types and 
Values</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="name">
 <col class="description">
@@ -102,7 +102,7 @@
 <p>Add a record to the database.</p>
 <div class="refsect3">
 <a name="dmap-container-db-add.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -131,7 +131,7 @@
                                 <em class="parameter"><code><span 
class="type">guint</span> id</code></em>);</pre>
 <div class="refsect3">
 <a name="dmap-container-db-lookup-by-id.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -168,7 +168,7 @@
 <p>Apply a function to each record in a container database.</p>
 <div class="refsect3">
 <a name="dmap-container-db-foreach.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -201,7 +201,7 @@
 dmap_container_db_count (<em class="parameter"><code><span 
class="type">DMAPContainerDb</span> *db</code></em>);</pre>
 <div class="refsect3">
 <a name="dmap-container-db-count.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-DMAPContainerRecord.html 
new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-DMAPContainerRecord.html
--- 
old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-DMAPContainerRecord.html  
    2016-11-12 03:14:47.000000000 +0100
+++ 
new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-DMAPContainerRecord.html  
    2017-06-05 02:04:46.000000000 +0200
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>DMAPContainerRecord: libdmapsharing-3.0 Reference Manual</title>
-<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
 <link rel="home" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="up" href="ch01.html" title="Libdmapsharing overview">
 <link rel="prev" href="libdmapsharing-3.0-DMAPContainerDb.html" 
title="DMAPContainerDb">
@@ -33,7 +33,7 @@
 </tr></table></div>
 <div class="refsect1">
 <a 
name="libdmapsharing-3.0-DMAPContainerRecord.functions"></a><h2>Functions</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="functions_return">
 <col class="functions_name">
@@ -76,7 +76,7 @@
 </div>
 <div class="refsect1">
 <a name="libdmapsharing-3.0-DMAPContainerRecord.other"></a><h2>Types and 
Values</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="name">
 <col class="description">
@@ -100,7 +100,7 @@
 dmap_container_record_get_id (<em class="parameter"><code><span 
class="type">DMAPContainerRecord</span> *record</code></em>);</pre>
 <div class="refsect3">
 <a name="dmap-container-record-get-id.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -129,7 +129,7 @@
 directly into the database (not copied) and not freed.</p>
 <div class="refsect3">
 <a name="dmap-container-record-add-entry.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -162,7 +162,7 @@
 dmap_container_record_get_entry_count (<em class="parameter"><code><span 
class="type">DMAPContainerRecord</span> *record</code></em>);</pre>
 <div class="refsect3">
 <a 
name="dmap-container-record-get-entry-count.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -187,7 +187,7 @@
 dmap_container_record_get_entries (<em class="parameter"><code><span 
class="type">DMAPContainerRecord</span> *record</code></em>);</pre>
 <div class="refsect3">
 <a name="dmap-container-record-get-entries.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-DMAPDb.html 
new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-DMAPDb.html
--- old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-DMAPDb.html   
2016-11-12 03:14:47.000000000 +0100
+++ new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-DMAPDb.html   
2017-06-05 02:04:46.000000000 +0200
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>DMAPDb: libdmapsharing-3.0 Reference Manual</title>
-<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
 <link rel="home" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="up" href="ch01.html" title="Libdmapsharing overview">
 <link rel="prev" href="libdmapsharing-3.0-DMAPContainerRecord.html" 
title="DMAPContainerRecord">
@@ -33,7 +33,7 @@
 </tr></table></div>
 <div class="refsect1">
 <a name="libdmapsharing-3.0-DMAPDb.functions"></a><h2>Functions</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="functions_return">
 <col class="functions_name">
@@ -115,7 +115,7 @@
 </div>
 <div class="refsect1">
 <a name="libdmapsharing-3.0-DMAPDb.other"></a><h2>Types and Values</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="name">
 <col class="description">
@@ -149,7 +149,7 @@
 <p>Add a record to the database.</p>
 <div class="refsect3">
 <a name="dmap-db-add.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -188,7 +188,7 @@
 <p>Add a record to the database and assign it the given ID.</p>
 <div class="refsect3">
 <a name="dmap-db-add-with-id.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -228,7 +228,7 @@
 <p>Create a record and add it to the database.</p>
 <div class="refsect3">
 <a name="dmap-db-add-path.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -262,7 +262,7 @@
                       <em class="parameter"><code><span 
class="type">guint</span> id</code></em>);</pre>
 <div class="refsect3">
 <a name="dmap-db-lookup-by-id.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -306,7 +306,7 @@
                                <em class="parameter"><code>const <span 
class="type">gchar</span> *location</code></em>);</pre>
 <div class="refsect3">
 <a name="dmap-db-lookup-id-by-location.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -343,7 +343,7 @@
 <p>Apply a function to each record in a media database.</p>
 <div class="refsect3">
 <a name="dmap-db-foreach.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -376,7 +376,7 @@
 dmap_db_count (<em class="parameter"><code>const <span 
class="type">DMAPDb</span> *db</code></em>);</pre>
 <div class="refsect3">
 <a name="dmap-db-count.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-DMAPMdnsBrowser.html 
new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-DMAPMdnsBrowser.html
--- old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-DMAPMdnsBrowser.html  
2016-11-12 03:14:47.000000000 +0100
+++ new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-DMAPMdnsBrowser.html  
2017-06-05 02:04:46.000000000 +0200
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>DMAPMdnsBrowser: libdmapsharing-3.0 Reference Manual</title>
-<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
 <link rel="home" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="up" href="ch01.html" title="Libdmapsharing overview">
 <link rel="prev" href="libdmapsharing-3.0-dmap-gst-wav-input-stream.html" 
title="dmap-gst-wav-input-stream">
@@ -34,7 +34,7 @@
 </tr></table></div>
 <div class="refsect1">
 <a name="libdmapsharing-3.0-DMAPMdnsBrowser.functions"></a><h2>Functions</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="functions_return">
 <col class="functions_name">
@@ -92,7 +92,7 @@
 </div>
 <div class="refsect1">
 <a name="libdmapsharing-3.0-DMAPMdnsBrowser.other"></a><h2>Types and 
Values</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="name">
 <col class="description">
@@ -155,7 +155,7 @@
 <p>Creates a new mDNS browser.</p>
 <div class="refsect3">
 <a name="dmap-mdns-browser-new.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -182,7 +182,7 @@
 <p>Starts a DMAPMdnsBrowser.</p>
 <div class="refsect3">
 <a name="dmap-mdns-browser-start.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -216,7 +216,7 @@
 <p>Stops a DMAPMdnsBrowser.</p>
 <div class="refsect3">
 <a name="dmap-mdns-browser-stop.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -266,7 +266,7 @@
 </p>
 <div class="refsect3">
 <a name="DMAPMdnsBrowserServiceType.members"></a><h4>Members</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="300px" class="enum_members_name">
 <col class="enum_members_description">
@@ -314,7 +314,7 @@
 </p>
 <div class="refsect3">
 <a name="DMAPMdnsBrowserTransportProtocol.members"></a><h4>Members</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="300px" class="enum_members_name">
 <col class="enum_members_description">
@@ -347,7 +347,7 @@
 </p>
 <div class="refsect3">
 <a name="DMAPMdnsBrowserError.members"></a><h4>Members</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="300px" class="enum_members_name">
 <col class="enum_members_description">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-DMAPRecord.html 
new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-DMAPRecord.html
--- old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-DMAPRecord.html       
2016-11-12 03:14:47.000000000 +0100
+++ new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-DMAPRecord.html       
2017-06-05 02:04:46.000000000 +0200
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>DMAPRecord: libdmapsharing-3.0 Reference Manual</title>
-<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
 <link rel="home" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="up" href="ch01.html" title="Libdmapsharing overview">
 <link rel="prev" href="libdmapsharing-3.0-DMAPMdnsBrowser.html" 
title="DMAPMdnsBrowser">
@@ -34,7 +34,7 @@
 </tr></table></div>
 <div class="refsect1">
 <a name="libdmapsharing-3.0-DMAPRecord.functions"></a><h2>Functions</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="functions_return">
 <col class="functions_name">
@@ -61,7 +61,7 @@
 </div>
 <div class="refsect1">
 <a name="libdmapsharing-3.0-DMAPRecord.other"></a><h2>Types and Values</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="name">
 <col class="description">
@@ -101,7 +101,7 @@
 dmap_record_to_blob (<em class="parameter"><code><span 
class="type">DMAPRecord</span> *record</code></em>);</pre>
 <div class="refsect3">
 <a name="dmap-record-to-blob.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -158,7 +158,7 @@
 </p>
 <div class="refsect3">
 <a name="DMAPMediaKind.members"></a><h4>Members</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="300px" class="enum_members_name">
 <col class="enum_members_description">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-DMAPRecordFactory.html 
new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-DMAPRecordFactory.html
--- 
old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-DMAPRecordFactory.html    
    2016-11-12 03:14:47.000000000 +0100
+++ 
new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-DMAPRecordFactory.html    
    2017-06-05 02:04:46.000000000 +0200
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>DMAPRecordFactory: libdmapsharing-3.0 Reference Manual</title>
-<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
 <link rel="home" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="up" href="ch01.html" title="Libdmapsharing overview">
 <link rel="prev" href="libdmapsharing-3.0-DMAPRecord.html" title="DMAPRecord">
@@ -33,7 +33,7 @@
 </tr></table></div>
 <div class="refsect1">
 <a name="libdmapsharing-3.0-DMAPRecordFactory.functions"></a><h2>Functions</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="functions_return">
 <col class="functions_name">
@@ -50,7 +50,7 @@
 </div>
 <div class="refsect1">
 <a name="libdmapsharing-3.0-DMAPRecordFactory.other"></a><h2>Types and 
Values</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="name">
 <col class="description">
@@ -75,7 +75,7 @@
                             <em class="parameter"><code><span 
class="type">gpointer</span> user_data</code></em>);</pre>
 <div class="refsect3">
 <a name="dmap-record-factory-create.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-DPAPRecord.html 
new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-DPAPRecord.html
--- old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-DPAPRecord.html       
2016-11-12 03:14:47.000000000 +0100
+++ new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-DPAPRecord.html       
2017-06-05 02:04:46.000000000 +0200
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>DPAPRecord: libdmapsharing-3.0 Reference Manual</title>
-<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
 <link rel="home" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="up" href="ch01.html" title="Libdmapsharing overview">
 <link rel="prev" href="libdmapsharing-3.0-dpap-connection.html" 
title="dpap-connection">
@@ -33,7 +33,7 @@
 </tr></table></div>
 <div class="refsect1">
 <a name="libdmapsharing-3.0-DPAPRecord.functions"></a><h2>Functions</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="functions_return">
 <col class="functions_name">
@@ -50,7 +50,7 @@
 </div>
 <div class="refsect1">
 <a name="libdmapsharing-3.0-DPAPRecord.other"></a><h2>Types and Values</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="name">
 <col class="description">
@@ -75,7 +75,7 @@
                   <em class="parameter"><code><span class="type">GError</span> 
**err</code></em>);</pre>
 <div class="refsect3">
 <a name="dpap-record-read.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-daap-connection.html 
new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-daap-connection.html
--- old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-daap-connection.html  
2016-11-12 03:14:47.000000000 +0100
+++ new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-daap-connection.html  
2017-06-05 02:04:46.000000000 +0200
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>daap-connection: libdmapsharing-3.0 Reference Manual</title>
-<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
 <link rel="home" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="up" href="ch01.html" title="Libdmapsharing overview">
 <link rel="prev" href="ch01.html" title="Libdmapsharing overview">
@@ -33,7 +33,7 @@
 </tr></table></div>
 <div class="refsect1">
 <a name="libdmapsharing-3.0-daap-connection.functions"></a><h2>Functions</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="functions_return">
 <col class="functions_name">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-daap-share.html 
new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-daap-share.html
--- old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-daap-share.html       
2016-11-12 03:14:47.000000000 +0100
+++ new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-daap-share.html       
2017-06-05 02:04:46.000000000 +0200
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>daap-share: libdmapsharing-3.0 Reference Manual</title>
-<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
 <link rel="home" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="up" href="ch01.html" title="Libdmapsharing overview">
 <link rel="prev" href="libdmapsharing-3.0-DAAPRecord.html" title="DAAPRecord">
@@ -33,7 +33,7 @@
 </tr></table></div>
 <div class="refsect1">
 <a name="libdmapsharing-3.0-daap-share.functions"></a><h2>Functions</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="functions_return">
 <col class="functions_name">
@@ -66,7 +66,7 @@
 <p>Creates a new DAAP share and publishes it using mDNS.</p>
 <div class="refsect3">
 <a name="daap-share-new.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-dacp-connection.html 
new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-dacp-connection.html
--- old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-dacp-connection.html  
2016-11-12 03:14:47.000000000 +0100
+++ new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-dacp-connection.html  
2017-06-05 02:04:46.000000000 +0200
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>dacp-connection: libdmapsharing-3.0 Reference Manual</title>
-<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
 <link rel="home" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="up" href="ch01.html" title="Libdmapsharing overview">
 <link rel="prev" href="libdmapsharing-3.0-daap-share.html" title="daap-share">
@@ -33,7 +33,7 @@
 </tr></table></div>
 <div class="refsect1">
 <a name="libdmapsharing-3.0-dacp-connection.functions"></a><h2>Functions</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="functions_return">
 <col class="functions_name">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-dacp-share.html 
new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-dacp-share.html
--- old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-dacp-share.html       
2016-11-12 03:14:47.000000000 +0100
+++ new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-dacp-share.html       
2017-06-05 02:04:46.000000000 +0200
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>dacp-share: libdmapsharing-3.0 Reference Manual</title>
-<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
 <link rel="home" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="up" href="ch01.html" title="Libdmapsharing overview">
 <link rel="prev" href="libdmapsharing-3.0-DACPPlayer.html" title="DACPPlayer">
@@ -33,7 +33,7 @@
 </tr></table></div>
 <div class="refsect1">
 <a name="libdmapsharing-3.0-dacp-share.functions"></a><h2>Functions</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="functions_return">
 <col class="functions_name">
@@ -186,7 +186,7 @@
 <p>Creates a new DACP share and publishes it using mDNS.</p>
 <div class="refsect3">
 <a name="dacp-share-new.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -235,7 +235,7 @@
 to this server.</p>
 <div class="refsect3">
 <a name="dacp-share-pair.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -272,7 +272,7 @@
 network.</p>
 <div class="refsect3">
 <a name="dacp-share-start-lookup.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -294,7 +294,7 @@
 <p>Stop looking up for DACP remotes.</p>
 <div class="refsect3">
 <a name="dacp-share-stop-lookup.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-dmap-connection.html 
new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-dmap-connection.html
--- old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-dmap-connection.html  
2016-11-12 03:14:47.000000000 +0100
+++ new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-dmap-connection.html  
2017-06-05 02:04:46.000000000 +0200
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>dmap-connection: libdmapsharing-3.0 Reference Manual</title>
-<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
 <link rel="home" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="up" href="ch01.html" title="Libdmapsharing overview">
 <link rel="prev" href="libdmapsharing-3.0-dacp-share.html" title="dacp-share">
@@ -34,7 +34,7 @@
 </tr></table></div>
 <div class="refsect1">
 <a name="libdmapsharing-3.0-dmap-connection.functions"></a><h2>Functions</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="functions_return">
 <col class="functions_name">
@@ -197,7 +197,7 @@
 </div>
 <div class="refsect1">
 <a name="libdmapsharing-3.0-dmap-connection.other"></a><h2>Types and 
Values</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="name">
 <col class="description">
@@ -394,7 +394,7 @@
 should obtain a password and provide it to this method.</p>
 <div class="refsect3">
 <a 
name="dmap-connection-authenticate-message.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
@@ -451,7 +451,7 @@
 </p>
 <div class="refsect3">
 <a name="DMAPConnectionState.members"></a><h4>Members</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="300px" class="enum_members_name">
 <col class="enum_members_description">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-dmap-enums.html 
new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-dmap-enums.html
--- old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-dmap-enums.html       
2016-11-12 03:14:47.000000000 +0100
+++ new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-dmap-enums.html       
2017-06-05 02:04:46.000000000 +0200
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>dmap-enums: libdmapsharing-3.0 Reference Manual</title>
-<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
 <link rel="home" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="up" href="ch01.html" title="Libdmapsharing overview">
 <link rel="prev" href="libdmapsharing-3.0-DMAPDb.html" title="DMAPDb">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-dmap-gst-input-stream.html
 
new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-dmap-gst-input-stream.html
--- 
old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-dmap-gst-input-stream.html
    2016-11-12 03:14:47.000000000 +0100
+++ 
new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-dmap-gst-input-stream.html
    2017-06-05 02:04:46.000000000 +0200
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>dmap-gst-input-stream: libdmapsharing-3.0 Reference Manual</title>
-<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
 <link rel="home" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="up" href="ch01.html" title="Libdmapsharing overview">
 <link rel="prev" href="libdmapsharing-3.0-dmap-enums.html" title="dmap-enums">
@@ -33,7 +33,7 @@
 </tr></table></div>
 <div class="refsect1">
 <a 
name="libdmapsharing-3.0-dmap-gst-input-stream.functions"></a><h2>Functions</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="functions_return">
 <col class="functions_name">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-dmap-gst-mp3-input-stream.html
 
new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-dmap-gst-mp3-input-stream.html
--- 
old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-dmap-gst-mp3-input-stream.html
        2016-11-12 03:14:47.000000000 +0100
+++ 
new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-dmap-gst-mp3-input-stream.html
        2017-06-05 02:04:46.000000000 +0200
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>dmap-gst-mp3-input-stream: libdmapsharing-3.0 Reference Manual</title>
-<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
 <link rel="home" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="up" href="ch01.html" title="Libdmapsharing overview">
 <link rel="prev" href="libdmapsharing-3.0-dmap-gst-input-stream.html" 
title="dmap-gst-input-stream">
@@ -33,7 +33,7 @@
 </tr></table></div>
 <div class="refsect1">
 <a 
name="libdmapsharing-3.0-dmap-gst-mp3-input-stream.functions"></a><h2>Functions</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="functions_return">
 <col class="functions_name">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-dmap-gst-wav-input-stream.html
 
new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-dmap-gst-wav-input-stream.html
--- 
old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-dmap-gst-wav-input-stream.html
        2016-11-12 03:14:47.000000000 +0100
+++ 
new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-dmap-gst-wav-input-stream.html
        2017-06-05 02:04:46.000000000 +0200
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>dmap-gst-wav-input-stream: libdmapsharing-3.0 Reference Manual</title>
-<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
 <link rel="home" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="up" href="ch01.html" title="Libdmapsharing overview">
 <link rel="prev" href="libdmapsharing-3.0-dmap-gst-mp3-input-stream.html" 
title="dmap-gst-mp3-input-stream">
@@ -33,7 +33,7 @@
 </tr></table></div>
 <div class="refsect1">
 <a 
name="libdmapsharing-3.0-dmap-gst-wav-input-stream.functions"></a><h2>Functions</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="functions_return">
 <col class="functions_name">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-dmap-share.html 
new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-dmap-share.html
--- old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-dmap-share.html       
2016-11-12 03:14:47.000000000 +0100
+++ new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-dmap-share.html       
2017-06-05 02:04:46.000000000 +0200
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>dmap-share: libdmapsharing-3.0 Reference Manual</title>
-<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
 <link rel="home" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="up" href="ch01.html" title="Libdmapsharing overview">
 <link rel="prev" href="libdmapsharing-3.0-DMAPRecordFactory.html" 
title="DMAPRecordFactory">
@@ -33,7 +33,7 @@
 </tr></table></div>
 <div class="refsect1">
 <a name="libdmapsharing-3.0-dmap-share.functions"></a><h2>Functions</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="functions_return">
 <col class="functions_name">
@@ -171,7 +171,7 @@
 </div>
 <div class="refsect1">
 <a name="libdmapsharing-3.0-dmap-share.other"></a><h2>Types and Values</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="name">
 <col class="description">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-dpap-connection.html 
new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-dpap-connection.html
--- old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-dpap-connection.html  
2016-11-12 03:14:47.000000000 +0100
+++ new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-dpap-connection.html  
2017-06-05 02:04:46.000000000 +0200
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>dpap-connection: libdmapsharing-3.0 Reference Manual</title>
-<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
 <link rel="home" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="up" href="ch01.html" title="Libdmapsharing overview">
 <link rel="prev" href="libdmapsharing-3.0-dmap-share.html" title="dmap-share">
@@ -33,7 +33,7 @@
 </tr></table></div>
 <div class="refsect1">
 <a name="libdmapsharing-3.0-dpap-connection.functions"></a><h2>Functions</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="functions_return">
 <col class="functions_name">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-dpap-share.html 
new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-dpap-share.html
--- old/libdmapsharing-2.9.37/doc/html/libdmapsharing-3.0-dpap-share.html       
2016-11-12 03:14:47.000000000 +0100
+++ new/libdmapsharing-2.9.38/doc/html/libdmapsharing-3.0-dpap-share.html       
2017-06-05 02:04:46.000000000 +0200
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>dpap-share: libdmapsharing-3.0 Reference Manual</title>
-<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
 <link rel="home" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="up" href="ch01.html" title="Libdmapsharing overview">
 <link rel="prev" href="libdmapsharing-3.0-DPAPRecord.html" title="DPAPRecord">
@@ -33,7 +33,7 @@
 </tr></table></div>
 <div class="refsect1">
 <a name="libdmapsharing-3.0-dpap-share.functions"></a><h2>Functions</h2>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="functions_return">
 <col class="functions_name">
@@ -66,7 +66,7 @@
 <p>Creates a new DPAP share and publishes it using mDNS.</p>
 <div class="refsect3">
 <a name="dpap-share-new.parameters"></a><h4>Parameters</h4>
-<div class="informaltable"><table width="100%" border="0">
+<div class="informaltable"><table class="informaltable" width="100%" 
border="0">
 <colgroup>
 <col width="150px" class="parameters_name">
 <col class="parameters_description">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libdmapsharing-2.9.37/doc/html/object-tree.html 
new/libdmapsharing-2.9.38/doc/html/object-tree.html
--- old/libdmapsharing-2.9.37/doc/html/object-tree.html 2016-11-12 
03:14:47.000000000 +0100
+++ new/libdmapsharing-2.9.38/doc/html/object-tree.html 2017-06-05 
02:04:46.000000000 +0200
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Object Hierarchy: libdmapsharing-3.0 Reference Manual</title>
-<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
+<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
 <link rel="home" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="up" href="index.html" title="libdmapsharing-3.0 Reference Manual">
 <link rel="prev" href="libdmapsharing-3.0-dpap-share.html" title="dpap-share">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libdmapsharing-2.9.37/libdmapsharing/dmap-share.c 
new/libdmapsharing-2.9.38/libdmapsharing/dmap-share.c
--- old/libdmapsharing-2.9.37/libdmapsharing/dmap-share.c       2016-11-12 
02:45:20.000000000 +0100
+++ new/libdmapsharing-2.9.38/libdmapsharing/dmap-share.c       2017-06-05 
02:02:14.000000000 +0200
@@ -292,16 +292,12 @@
                g_clear_error (&error);
 
                soup_server_listen_all (share->priv->server, 
SOUP_ADDRESS_ANY_PORT,
-                                       SOUP_SERVER_LISTEN_IPV6_ONLY, &error);
+                                       0, &error);
        }
 
        listening_uri_list = soup_server_get_uris (share->priv->server);
-
-       if (error != NULL || listening_uri_list == NULL) {
-               g_warning ("Unable to start music sharing server on any port: 
%s. ",
-                          error->message);
-               g_clear_error (&error);
-
+       if (listening_uri_list == NULL) {
+               g_warning ("Unable to start music sharing server on any port.");
                return FALSE;
        }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libdmapsharing-2.9.37/libdmapsharing-3.0-uninstalled.pc 
new/libdmapsharing-2.9.38/libdmapsharing-3.0-uninstalled.pc
--- old/libdmapsharing-2.9.37/libdmapsharing-3.0-uninstalled.pc 2016-11-12 
03:14:43.000000000 +0100
+++ new/libdmapsharing-2.9.38/libdmapsharing-3.0-uninstalled.pc 2017-06-05 
02:04:41.000000000 +0200
@@ -5,7 +5,7 @@
 
 Name: libdmapsharing
 Description: libdmapsharing
-Version: 2.9.37
+Version: 2.9.38
 Requires: glib-2.0 libsoup-2.4 gstreamer-1.0
 Libs: -L${libdir} -ldmapsharing-3.0
 Cflags: -I${includedir}


Reply via email to