summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--openbsd-compat/getopt.h4
2 files changed, 1 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index a0dd182f8..a64ea46a7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -75,6 +75,7 @@
75 the list is DH group exchange, but that causes a bit more traffic which can 75 the list is DH group exchange, but that causes a bit more traffic which can
76 mean that the tests flip bits in the initial exchange rather than the MACed 76 mean that the tests flip bits in the initial exchange rather than the MACed
77 traffic and we get different errors to what the tests look for. 77 traffic and we get different errors to what the tests look for.
78 - (dtucker) [openbsd-compat/getopt.h] Remove unneeded bits.
78 79
7920130516 8020130516
80 - (djm) [contrib/ssh-copy-id] Fix bug that could cause "rm *" to be 81 - (djm) [contrib/ssh-copy-id] Fix bug that could cause "rm *" to be
diff --git a/openbsd-compat/getopt.h b/openbsd-compat/getopt.h
index 0311b078b..8eb12447e 100644
--- a/openbsd-compat/getopt.h
+++ b/openbsd-compat/getopt.h
@@ -33,8 +33,6 @@
33#ifndef _GETOPT_H_ 33#ifndef _GETOPT_H_
34#define _GETOPT_H_ 34#define _GETOPT_H_
35 35
36#include <sys/cdefs.h>
37
38/* 36/*
39 * GNU-like getopt_long() and 4.4BSD getsubopt()/optreset extensions 37 * GNU-like getopt_long() and 4.4BSD getsubopt()/optreset extensions
40 */ 38 */
@@ -56,7 +54,6 @@ struct option {
56 int val; 54 int val;
57}; 55};
58 56
59__BEGIN_DECLS
60int getopt_long(int, char * const *, const char *, 57int getopt_long(int, char * const *, const char *,
61 const struct option *, int *); 58 const struct option *, int *);
62int getopt_long_only(int, char * const *, const char *, 59int getopt_long_only(int, char * const *, const char *,
@@ -73,6 +70,5 @@ extern int optopt;
73extern int optreset; 70extern int optreset;
74extern char *suboptarg; /* getsubopt(3) external variable */ 71extern char *suboptarg; /* getsubopt(3) external variable */
75#endif 72#endif
76__END_DECLS
77 73
78#endif /* !_GETOPT_H_ */ 74#endif /* !_GETOPT_H_ */