View Single Post
  #1  
Old 01-02-2008, 08:53 PM
Knightly
Accomplished Programmer
 
Join Date: Nov 2006
Location: Honolulu, HI
Posts: 91
Default Inconsequential typo in common\rules.cpp

Pretty insignificant, but it caught my eye while looking over the rules code.

Code:
_log(RULES__ERROR, "Fauled to create rule set in the database: %s: %s", query,errbuf);
should be:
Code:
_log(RULES__ERROR, "Failed to create rule set in the database: %s: %s", query,errbuf);
Reply With Quote