pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/net/DarwinStreamingServer



Module Name:    pkgsrc
Committed By:   joerg
Date:           Sat Dec 24 10:18:31 UTC 2016

Modified Files:
        pkgsrc/net/DarwinStreamingServer: distinfo
Added Files:
        pkgsrc/net/DarwinStreamingServer/patches:
            patch-PrefsSourceLib_XMLParser.cpp

Log Message:
Pointers have no sign.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 pkgsrc/net/DarwinStreamingServer/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/net/DarwinStreamingServer/patches/patch-PrefsSourceLib_XMLParser.cpp

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/net/DarwinStreamingServer/distinfo
diff -u pkgsrc/net/DarwinStreamingServer/distinfo:1.5 pkgsrc/net/DarwinStreamingServer/distinfo:1.6
--- pkgsrc/net/DarwinStreamingServer/distinfo:1.5       Wed Nov  4 00:34:51 2015
+++ pkgsrc/net/DarwinStreamingServer/distinfo   Sat Dec 24 10:18:31 2016
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.5 2015/11/04 00:34:51 agc Exp $
+$NetBSD: distinfo,v 1.6 2016/12/24 10:18:31 joerg Exp $
 
 SHA1 (DarwinStreamingSrvr5.5.5-Source.tar.gz) = ba8419be20e1911f7167dbd48722b2ba5e6f1fe1
 RMD160 (DarwinStreamingSrvr5.5.5-Source.tar.gz) = 62996496da51971e384fc26dd336ef2785c2dca7
@@ -10,6 +10,7 @@ SHA1 (patch-APIModules_QTSSReflectorModu
 SHA1 (patch-CommonUtilitiesLib_EventContext.h) = e6d8f19e54670141e35a811df64366ad9983fbd7
 SHA1 (patch-CommonUtilitiesLib_Task.cpp) = 5274c99a1f9239ef5a2096a48e3925a024868615
 SHA1 (patch-CommonUtilitiesLib_Task.h) = 7b231d0f84548c7b11fd392ebad9b96b6764428b
+SHA1 (patch-PrefsSourceLib_XMLParser.cpp) = 9e79da4809c3a046e2354ea7099a75f59803447d
 SHA1 (patch-QTFileTools_QTBroadcaster.tproj_QTBroadcaster.cpp) = 2c3efe74e286e3d2cb66448461f0b7b8d278705c
 SHA1 (patch-Server.tproj_main.cpp) = d50e581a54609dab6a8146a39faf036de9c39ebf
 SHA1 (patch-aa) = 2fc84964264f9b6529d031801b36bcca89f591a6

Added files:

Index: pkgsrc/net/DarwinStreamingServer/patches/patch-PrefsSourceLib_XMLParser.cpp
diff -u /dev/null pkgsrc/net/DarwinStreamingServer/patches/patch-PrefsSourceLib_XMLParser.cpp:1.1
--- /dev/null   Sat Dec 24 10:18:31 2016
+++ pkgsrc/net/DarwinStreamingServer/patches/patch-PrefsSourceLib_XMLParser.cpp Sat Dec 24 10:18:31 2016
@@ -0,0 +1,15 @@
+$NetBSD: patch-PrefsSourceLib_XMLParser.cpp,v 1.1 2016/12/24 10:18:31 joerg Exp $
+
+Pointers have no sign.
+
+--- PrefsSourceLib/XMLParser.cpp.orig  2016-12-24 09:26:37.933694610 +0000
++++ PrefsSourceLib/XMLParser.cpp
+@@ -656,7 +656,7 @@ void XMLTag::FormatData(ResizeableString
+     
+     if (fEmbeddedTags.GetLength() == 0)
+     {
+-        if (fValue > 0)
++        if (fValue != NULL)
+             formatter->Put(fValue);
+     }
+     else



Home | Main Index | Thread Index | Old Index