Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 81010 Details for
Bug 124487
daemontools-0.76-r5 64bit compile cleanups
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Adjustments. :)
daemontools-64bit-clean.patch (text/plain), 1.68 KB, created by
Tres 'RiverRat' Melton
on 2006-02-28 22:21:21 UTC
(
hide
)
Description:
Adjustments. :)
Filename:
MIME Type:
Creator:
Tres 'RiverRat' Melton
Created:
2006-02-28 22:21:21 UTC
Size:
1.68 KB
patch
obsolete
>--- chkshsgr.c.orig 2006-02-28 22:53:30.000000000 -0700 >+++ chkshsgr.c 2006-02-28 22:53:37.000000000 -0700 >@@ -1,10 +1,11 @@ > /* Public domain. */ > >+#include <sys/types.h> > #include <unistd.h> > > int main() > { >- short x[4]; >+ gid_t x[4]; > > x[0] = x[1] = 0; > if (getgroups(1,x) == 0) if (setgroups(1,x) == -1) _exit(1); >--- multilog.c.orig 2006-02-28 22:54:56.000000000 -0700 >+++ multilog.c 2006-02-28 23:00:33.000000000 -0700 >@@ -197,7 +197,7 @@ > args[1] = "-c"; > args[2] = d->processor; > args[3] = 0; >- execve("/bin/sh",args,environ); >+ execve("/bin/sh",(char*const*)args,environ); > } > > void fullcurrent(struct cyclog *d) >--- supervise.c.orig 2006-02-28 22:54:15.000000000 -0700 >+++ supervise.c 2006-02-28 22:59:56.000000000 -0700 >@@ -99,7 +99,7 @@ > case 0: > sig_uncatch(sig_child); > sig_unblock(sig_child); >- execve(*run,run,environ); >+ execve(*run,(char*const*)run,environ); > strerr_die4sys(111,FATAL,"unable to start ",dir,"/run: "); > } > flagpaused = 0; >--- svscan.c.orig 2006-02-28 22:54:37.000000000 -0700 >+++ svscan.c 2006-02-28 23:05:02.000000000 -0700 >@@ -101,7 +101,7 @@ > args[0] = "supervise"; > args[1] = fn; > args[2] = 0; >- pathexec_run(*args,args,environ); >+ pathexec_run(*args,args,(const char*const*)environ); > strerr_die4sys(111,WARNING,"unable to start supervise ",fn,": "); > default: > x[i].pid = child; >@@ -120,7 +120,7 @@ > args[0] = "supervise"; > args[1] = "log"; > args[2] = 0; >- pathexec_run(*args,args,environ); >+ pathexec_run(*args,args,(const char*const*)environ); > strerr_die4sys(111,WARNING,"unable to start supervise ",fn,"/log: "); > default: > x[i].pidlog = child;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 124487
: 81010