소스 검색

Fixing minor typo ("quries" -> "queries") during an error logging

git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@1616 689a6050-402a-0410-94f2-e92a70836424
Bastian Friedrich 18 년 전
부모
커밋
e180d9c35e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lib/srdb1/db.c

+ 1 - 1
lib/srdb1/db.c

@@ -117,7 +117,7 @@ int bind_dbmod(char* mod, db_func_t* mydbf)
 	dbf.free_result = (db_free_result_f)find_mod_export(tmp, "db_free_result", 2, 0);
 	if ((dbf.cap & (DB_CAP_QUERY | DB_CAP_RAW_QUERY))
 	    && (dbf.free_result == 0)) {
-		LOG(L_ERR, "bind_dbmod: Module %s supports quries but does not export free_result function\n", tmp);
+		LOG(L_ERR, "bind_dbmod: Module %s supports queries but does not export free_result function\n", tmp);
 		goto err;
 	}