]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
upstream: Include sys/socket.h to match -portable,
authordtucker@openbsd.org <dtucker@openbsd.org>
Sun, 8 Feb 2026 17:51:43 +0000 (17:51 +0000)
committerDarren Tucker <dtucker@dtucker.net>
Sun, 8 Feb 2026 22:46:57 +0000 (09:46 +1100)
eliminating one diff.

OpenBSD-Commit-ID: 7670fdf35b0c7aee41cd0d6ded86b4792e261f36

ssh-agent.c

index 3bf01ce84cd0ed043e6c9337313cc5c9a6e8a14f..848b0f9a518cb217c1c3209a77a7f8968d5ff978 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh-agent.c,v 1.317 2026/01/27 06:48:29 djm Exp $ */
+/* $OpenBSD: ssh-agent.c,v 1.318 2026/02/08 17:51:43 dtucker Exp $ */
 /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>
  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
 
 #include <errno.h>
 #include <fcntl.h>
-#include <limits.h>
 #include <paths.h>
 #include <poll.h>
 #include <signal.h>
-#include <stdarg.h>
-#include <stdio.h>
 #include <stdlib.h>
-#include <time.h>
+#include <stdio.h>
 #include <string.h>
+#include <stdarg.h>
+#include <limits.h>
+#include <time.h>
 #include <unistd.h>
 #include <util.h>