# HG changeset patch # User Will Thompson # Date 1197742984 0 # Node ID f2cf1d61a67657887e24ef693b1ed77eb9104118 # Parent cc0809ec0c85a0876afed7de40184e3377792b14 The debug message for purple_prefs_set_path when the pref in question is not type="path" was wrong. diff -r cc0809ec0c85 -r f2cf1d61a676 libpurple/prefs.c --- a/libpurple/prefs.c Fri Dec 14 21:44:34 2007 +0000 +++ b/libpurple/prefs.c Sat Dec 15 18:23:04 2007 +0000 @@ -914,7 +914,7 @@ if(pref) { if(pref->type != PURPLE_PREF_PATH) { purple_debug_error("prefs", - "purple_prefs_set_path: %s not a string pref\n", name); + "purple_prefs_set_path: %s not a path pref\n", name); return; }