ソースを参照

rtjson: fix typo

Thanks, lintian
> I: kamailio: spelling-error-in-binary usr/lib/x86_64-linux-gnu/kamailio/modules/rtjson.so diabled disabled
Victor Seva 7 年 前
コミット
a2c77805f1
1 ファイル変更2 行追加2 行削除
  1. 2 2
      src/modules/rtjson/rtjson_routing.c

+ 2 - 2
src/modules/rtjson/rtjson_routing.c

@@ -54,11 +54,11 @@ static uac_api_t uacb;
 int rtjson_init(void)
 {
 	if (load_tm_api( &tmb ) == -1) {
-		LM_NOTICE("cannot load the TM API - some features are diabled\n");
+		LM_NOTICE("cannot load the TM API - some features are disabled\n");
 		memset(&tmb, 0, sizeof(struct tm_binds));
 	}
 	if (load_uac_api(&uacb) < 0) {
-		LM_NOTICE("cannot bind to UAC API - some features are diabled\n");
+		LM_NOTICE("cannot bind to UAC API - some features are disabled\n");
 		memset(&uacb, 0, sizeof(uac_api_t));
 	}
 	return 0;