Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 843873 Details for
Bug 887249
net-misc/vmpsd-1.4: many warnings due to missing headers inclusions
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch proposal to silent 'implicit declaration of functions' warnings
vmpsd-1.4-includes.patch (text/plain), 1.69 KB, created by
Jocelyn Mayer
on 2022-12-19 18:31:26 UTC
(
hide
)
Description:
Patch proposal to silent 'implicit declaration of functions' warnings
Filename:
MIME Type:
Creator:
Jocelyn Mayer
Created:
2022-12-19 18:31:26 UTC
Size:
1.69 KB
patch
obsolete
>--- vmpsd/daemon.c 2005-12-29 16:32:02.000000000 +0100 >+++ vmpsd/daemon.c 2019-06-07 09:50:06.839448716 +0200 >@@ -2,10 +2,14 @@ > > #include "log.h" > >+#include <stdlib.h> > #include <stdio.h> > #include <signal.h> >+#include <sys/types.h> > #include <sys/param.h> >+#include <sys/stat.h> > #include <sys/wait.h> >+#include <unistd.h> > #include <errno.h> > > #ifdef SETPGRP_VOID >@@ -38,7 +42,7 @@ RETSIGTYPE sig_child() > > } > >-daemon_start(ignsigcld) >+void daemon_start(ignsigcld) > > int ignsigcld; > >--- vmpsd/data.c 2004-07-08 22:58:20.000000000 +0200 >+++ vmpsd/data.c 2019-06-07 09:46:32.896814247 +0200 >@@ -2,7 +2,7 @@ > > #include <stdlib.h> > #include <search.h> >-#include <stdlib.h> >+#include <string.h> > > #include "data.h" > #include "log.h" >--- vmpsd/external.c 2004-11-10 14:10:04.000000000 +0100 >+++ vmpsd/external.c 2019-06-07 09:42:38.903931334 +0200 >@@ -1,5 +1,7 @@ >+#include <stdlib.h> > #include <stdio.h> > #include <signal.h> >+#include <string.h> > #include <sys/param.h> > #include <sys/wait.h> > #include <sys/types.h> >--- vmpsd/parser.c 2004-07-08 15:57:30.000000000 +0200 >+++ vmpsd/parser.c 2019-06-07 09:41:00.534719377 +0200 >@@ -1,5 +1,6 @@ > #include "config.h" > >+#include <stdlib.h> > #include <stdio.h> > #include <ctype.h> > #include <string.h> >--- vmpsd/vmpsd.c 2019-06-07 09:28:33.013509568 +0200 >+++ vmpsd/vmpsd.c 2019-06-07 09:44:38.800408508 +0200 >@@ -1,7 +1,9 @@ > #include "config.h" > > #include <stdlib.h> >+#include <stdio.h> > #include <signal.h> >+#include <string.h> > > #if HAVE_UNISTD_H > #include <unistd.h> >--- vmpsd/vqp.c 2019-06-07 09:28:33.085510455 +0200 >+++ vmpsd/vqp.c 2019-06-07 09:41:48.839314511 +0200 >@@ -1,5 +1,6 @@ > #include "config.h" > >+#include <string.h> > #include <netdb.h> > > #include "log.h"
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 887249
:
843871
| 843873