]> git.ipfire.org Git - thirdparty/asterisk.git/commit
clang compiler warnings: Fix -Winitializer-overrides
authorMatthew Jordan <mjordan@digium.com>
Sat, 28 Mar 2015 12:27:08 +0000 (12:27 +0000)
committerMatthew Jordan <mjordan@digium.com>
Sat, 28 Mar 2015 12:27:08 +0000 (12:27 +0000)
commit844bc76bef50be6bdeaf10010d9024ffd6aca948
tree4cca53685bf8d53ce7c00f50cf774f59a1782a46
parent5e204042d9f24083de56e267ad752abf16820f97
clang compiler warnings: Fix -Winitializer-overrides

This patch fixes clange compiler warnings for initializer overrides.
Specifically:

res_pjsip/config_transport maps PJSIP_TLSV1_METHOD to the same enumeration
value as PJSIP_SSL_DEFAULT_METHOD. When initializing an array containing
those enum values, we therefore initialize the value twice to two different
values, "tlsv1" and "default". This patch changes it to just initialize
the index in the array to "tlsv1".

Review: https://reviewboard.asterisk.org/r/4539/

ASTERISK-24917
Reported by: dkdegroot
patches:
  rb4539.patch submitted by dkdegroot (License 6600)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/13@433682 65c4cc65-6c06-0410-ace0-fbb531ad65f3
res/res_pjsip/config_transport.c