]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
modules.conf: Fix more differing usages of assignment operators.
authorSean Bright <sean.bright@gmail.com>
Sun, 28 Mar 2021 15:47:35 +0000 (11:47 -0400)
committerSean Bright <sean.bright@gmail.com>
Sun, 28 Mar 2021 15:49:45 +0000 (09:49 -0600)
I missed the changes in 18 and master in the previous review.

ASTERISK-24434 #close

Change-Id: Ieb132b2a998ce96daa9c9acf26535a974b895876

configs/samples/modules.conf.sample

index 8d6e75df181456441b1622a27a4e6a22233f8a34..56ffe27eee3bbfb049ef20dcc0638483af25a2d7 100644 (file)
@@ -46,11 +46,11 @@ noload = res_hep_pjsip.so
 noload = res_hep_rtcp.so
 ;
 ; Do not load chan_sip by default, it may conflict with res_pjsip.
-noload => chan_sip.so
+noload = chan_sip.so
 ;
 ; Load one of the voicemail modules as they are mutually exclusive.
 ; By default, load app_voicemail only (automatically).
 ;
-;noload => app_voicemail.so
-noload => app_voicemail_imap.so
-noload => app_voicemail_odbc.so
+;noload = app_voicemail.so
+noload = app_voicemail_imap.so
+noload = app_voicemail_odbc.so