summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorstevesk <stevesk@openbsd.org>2002-06-06 01:09:41 +0000
committerstevesk <stevesk@openbsd.org>2002-06-06 01:09:41 +0000
commit575f07cdf64f397955a096e2bfb1a5db4d521799 (patch)
tree53c823893776b810a7b28ac69e9a4c4652aaa587
parentfix automatic policy generation for system calls that have the same args (diff)
downloadwireguard-openbsd-575f07cdf64f397955a096e2bfb1a5db4d521799.tar.xz
wireguard-openbsd-575f07cdf64f397955a096e2bfb1a5db4d521799.zip
no trailing comma in enum; china@thewrittenword.com
-rw-r--r--usr.bin/ssh/monitor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/monitor.h b/usr.bin/ssh/monitor.h
index ab0782b87ea..9b9f21d6fa0 100644
--- a/usr.bin/ssh/monitor.h
+++ b/usr.bin/ssh/monitor.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: monitor.h,v 1.4 2002/05/12 23:53:45 djm Exp $ */
+/* $OpenBSD: monitor.h,v 1.5 2002/06/06 01:09:41 stevesk Exp $ */
/*
* Copyright 2002 Niels Provos <provos@citi.umich.edu>
@@ -49,7 +49,7 @@ enum monitor_reqtype {
MONITOR_REQ_RSAKEYALLOWED, MONITOR_ANS_RSAKEYALLOWED,
MONITOR_REQ_RSACHALLENGE, MONITOR_ANS_RSACHALLENGE,
MONITOR_REQ_RSARESPONSE, MONITOR_ANS_RSARESPONSE,
- MONITOR_REQ_TERM,
+ MONITOR_REQ_TERM
};
struct mm_master;