Bugzilla – Attachment 3567 Details for
Bug 3384
Feature proposal
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Header file dependency fixes
0001-Headerfile-dependency-fixes.patch (text/plain), 1.22 KB, created by
Thomas Koeller
on 2022-01-30 11:44:59 AEDT
(
hide
)
Description:
Header file dependency fixes
Filename:
MIME Type:
Creator:
Thomas Koeller
Created:
2022-01-30 11:44:59 AEDT
Size:
1.22 KB
patch
obsolete
>From 8d2d155b1cb53439ffe089396c850a67521dd495 Mon Sep 17 00:00:00 2001 >Message-Id: <8d2d155b1cb53439ffe089396c850a67521dd495.1643473104.git.thomas@koeller.dyndns.org> >In-Reply-To: <cover.1643473104.git.thomas@koeller.dyndns.org> >References: <cover.1643473104.git.thomas@koeller.dyndns.org> >From: Thomas Koeller <thomas@koeller.dyndns.org> >Date: Thu, 27 Jan 2022 12:59:11 +0100 >Subject: [PATCH 1/3] Headerfile dependency fixes > >Fix two header file interdependency issues: > >The misc.h header uses the uint64_t type and so has to include stdint.h, >while auth.h uses the HostStatus type from hostfile.h, which it >therefore has include. > >Signed-off-by: Thomas Koeller <thomas@koeller.dyndns.org> >--- > auth.h | 2 ++ > misc.h | 1 + > 2 files changed, 3 insertions(+) > >diff --git a/auth.h b/auth.h >index a65d8fd0..edac85b2 100644 >--- a/auth.h >+++ b/auth.h >@@ -40,6 +40,8 @@ > #include <krb5.h> > #endif > >+#include "hostfile.h" >+ > struct passwd; > struct ssh; > struct sshbuf; >diff --git a/misc.h b/misc.h >index 2e1b5fec..ba14e20a 100644 >--- a/misc.h >+++ b/misc.h >@@ -19,6 +19,7 @@ > #include <sys/types.h> > #include <sys/socket.h> > #include <stdio.h> >+#include <stdint.h> > > /* Data structure for representing a forwarding request. */ > struct Forward { >-- >2.34.1 >
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 3384
:
3566
| 3567 |
3568
|
3569