1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

agent: More fix for get_client_pid for portability.

* configure.ac: Check sys/ucred.h instead of ucred.h.
    * agent/command-ssh.c: Include sys/ucred.h.

--

It's *BSD and macOS thing.

Fixes-commit: f7f806afa5
Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
This commit is contained in:
NIIBE Yutaka 2018-01-26 10:08:29 +09:00
parent 91a3d15cee
commit 08e686a6a6
2 changed files with 3 additions and 3 deletions

View file

@ -44,8 +44,8 @@
#include <sys/socket.h>
#include <sys/un.h>
#endif /*!HAVE_W32_SYSTEM*/
#ifdef HAVE_UCRED_H
#include <ucred.h>
#ifdef HAVE_SYS_UCRED_H
#include <sys/ucred.h>
#endif
#include "agent.h"