summaryrefslogtreecommitdiff
path: root/src/lib/libssl/d1_srtp.c
diff options
context:
space:
mode:
authortb <>2020-03-16 15:25:14 +0000
committertb <>2020-03-16 15:25:14 +0000
commitafbeb5d666df4224373ad3c47cef95d0c68ed8d5 (patch)
tree618a5907f280250b761792adbc8ceb103d1a5999 /src/lib/libssl/d1_srtp.c
parentdc99a0fd50f2ded1793b4651a9931696db2b6614 (diff)
downloadopenbsd-afbeb5d666df4224373ad3c47cef95d0c68ed8d5.tar.gz
openbsd-afbeb5d666df4224373ad3c47cef95d0c68ed8d5.tar.bz2
openbsd-afbeb5d666df4224373ad3c47cef95d0c68ed8d5.zip
Consistently spell 'unsigned' as 'unsigned int', as style(9) seems
to prefer that. No binary change except in d1_srtp.c where the generated assembly differs only in line numbers (due to a wrapped long line) and in s3_cbc.c where there is no change in the generated assembly. ok inoguchi jsing
Diffstat (limited to 'src/lib/libssl/d1_srtp.c')
-rw-r--r--src/lib/libssl/d1_srtp.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/libssl/d1_srtp.c b/src/lib/libssl/d1_srtp.c
index 4b1b24a3c1..70e9a4f127 100644
--- a/src/lib/libssl/d1_srtp.c
+++ b/src/lib/libssl/d1_srtp.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: d1_srtp.c,v 1.23 2018/11/09 04:35:09 tb Exp $ */ 1/* $OpenBSD: d1_srtp.c,v 1.24 2020/03/16 15:25:13 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -140,7 +140,7 @@ static SRTP_PROTECTION_PROFILE srtp_known_profiles[] = {
140 140
141int 141int
142srtp_find_profile_by_name(char *profile_name, SRTP_PROTECTION_PROFILE **pptr, 142srtp_find_profile_by_name(char *profile_name, SRTP_PROTECTION_PROFILE **pptr,
143 unsigned len) 143 unsigned int len)
144{ 144{
145 SRTP_PROTECTION_PROFILE *p; 145 SRTP_PROTECTION_PROFILE *p;
146 146
@@ -159,7 +159,8 @@ srtp_find_profile_by_name(char *profile_name, SRTP_PROTECTION_PROFILE **pptr,
159} 159}
160 160
161int 161int
162srtp_find_profile_by_num(unsigned profile_num, SRTP_PROTECTION_PROFILE **pptr) 162srtp_find_profile_by_num(unsigned int profile_num,
163 SRTP_PROTECTION_PROFILE **pptr)
163{ 164{
164 SRTP_PROTECTION_PROFILE *p; 165 SRTP_PROTECTION_PROFILE *p;
165 166