[pkg-java] r6415 - in trunk/commons-daemon: . debian src/native/unix	src/native/unix/native
    mkoch at alioth.debian.org 
    mkoch at alioth.debian.org
       
    Wed May  7 18:08:52 UTC 2008
    
    
  
Author: mkoch
Date: 2008-05-07 18:08:51 +0000 (Wed, 07 May 2008)
New Revision: 6415
Modified:
   trunk/commons-daemon/
   trunk/commons-daemon/debian/changelog
   trunk/commons-daemon/src/native/unix/
   trunk/commons-daemon/src/native/unix/native/
   trunk/commons-daemon/src/native/unix/native/jsvc-unix.c
Log:
commons-daemon (1.0.2~svn20061127-9) unstable; urgency=low
  * Added patch to handle old capabilities version in jsvc-unix.c.
    Closes: #412690
 -- Michael Koch <konqueror at gmx.de>  Wed, 07 May 2008 20:03:55 +0200
Property changes on: trunk/commons-daemon
___________________________________________________________________
Name: svn:ignore
   + dist
jsvc.1
target
*-stamp
Modified: trunk/commons-daemon/debian/changelog
===================================================================
--- trunk/commons-daemon/debian/changelog	2008-05-07 09:42:55 UTC (rev 6414)
+++ trunk/commons-daemon/debian/changelog	2008-05-07 18:08:51 UTC (rev 6415)
@@ -1,3 +1,10 @@
+commons-daemon (1.0.2~svn20061127-9) unstable; urgency=low
+
+  * Added patch to handle old capabilities version in jsvc-unix.c.
+    Closes: #412690
+
+ -- Michael Koch <konqueror at gmx.de>  Wed, 07 May 2008 20:03:55 +0200
+
 commons-daemon (1.0.2~svn20061127-8) unstable; urgency=low
 
   * Clean src/native/unix/configure. Closes: #478503
Property changes on: trunk/commons-daemon/src/native/unix
___________________________________________________________________
Name: svn:ignore
   + Makedefs
Makefile
config.guess
config.log
config.status
config.sub
configure
install-sh
jsvc
Property changes on: trunk/commons-daemon/src/native/unix/native
___________________________________________________________________
Name: svn:ignore
   + Makefile
*.a
Modified: trunk/commons-daemon/src/native/unix/native/jsvc-unix.c
===================================================================
--- trunk/commons-daemon/src/native/unix/native/jsvc-unix.c	2008-05-07 09:42:55 UTC (rev 6414)
+++ trunk/commons-daemon/src/native/unix/native/jsvc-unix.c	2008-05-07 18:08:51 UTC (rev 6415)
@@ -174,7 +174,7 @@
     struct __user_cap_data_struct cap;
  
     memset(&caphead, 0, sizeof caphead);
-    caphead.version = _LINUX_CAPABILITY_VERSION;
+    caphead.version = 0x19980330;
     caphead.pid = 0;
     memset(&cap, 0, sizeof cap);
     cap.effective = caps;
    
    
More information about the pkg-java-commits
mailing list