commit 89c3463c70f1221fb0214c654571de4b556119a2
Author: Jan Rękorajski <[email protected]>
Date:   Tue Nov 13 20:22:55 2012 +0100

    - use fputs(outBuf, stdout) to avoid second newline
    - rel 5

 format-security.patch | 14 +++++++-------
 xmlrpc-epi.spec       |  2 +-
 2 files changed, 8 insertions(+), 8 deletions(-)
---
diff --git a/xmlrpc-epi.spec b/xmlrpc-epi.spec
index aea638a..c83d35e 100644
--- a/xmlrpc-epi.spec
+++ b/xmlrpc-epi.spec
@@ -4,7 +4,7 @@ Summary:        XML-RPC EPI library - an implementation of the 
xmlrpc protocol
 Summary(pl.UTF-8):     Biblioteka XML-RPC EPI - implementacja protokołu xmlrpc
 Name:          xmlrpc-epi
 Version:       0.54.1
-Release:       4
+Release:       5
 License:       BSD
 Group:         Libraries
 Source0:       
http://downloads.sourceforge.net/xmlrpc-epi/%{name}-%{version}.tar.gz
diff --git a/format-security.patch b/format-security.patch
index ba3dafe..9fc496c 100644
--- a/format-security.patch
+++ b/format-security.patch
@@ -5,7 +5,7 @@
  
       if(outBuf) {
 -        printf(outBuf);
-+        puts(outBuf);
++        fputs(outBuf, stdout);
          free(outBuf);
       }
    }
@@ -14,7 +14,7 @@
  
       if(outBuf) {
 -        printf(outBuf);
-+        puts(outBuf);
++        fputs(outBuf, stdout);
          free(outBuf);
       }
    }
@@ -25,7 +25,7 @@
  
       if(outBuf) {
 -        printf(outBuf);
-+        puts(outBuf);
++        fputs(outBuf, stdout);
          free(outBuf);
       }
    }
@@ -36,7 +36,7 @@
  
       if(outBuf) {
 -        printf(outBuf);
-+        puts(outBuf);
++        fputs(outBuf, stdout);
          free(outBuf);
       }
    }
@@ -47,7 +47,7 @@
  
        if(outBuf) {
 -         printf(outBuf);
-+         puts(outBuf);
++         fputs(outBuf, stdout);
           free(outBuf);
        }
     }
@@ -58,7 +58,7 @@
  
       if(outBuf) {
 -        printf(outBuf);
-+        puts(outBuf);
++        fputs(outBuf, stdout);
          free(outBuf);
       }
    }
@@ -69,7 +69,7 @@
  
       if(outBuf) {
 -        printf(outBuf);
-+        puts(outBuf);
++        fputs(outBuf, stdout);
          free(outBuf);
       }
    }
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/xmlrpc-epi.git/commitdiff/89c3463c70f1221fb0214c654571de4b556119a2

_______________________________________________
pld-cvs-commit mailing list
[email protected]
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit

Reply via email to