X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=webcit%2Fpreferences.c;h=d1db3cbf8e1e1372b32f958756d401609543e5a5;hp=eaf6f7f4249ca4985a1ef9d698fb9d58d2de3184;hb=81a67b38b8603e190afb77f1e8bd3bdcad39517a;hpb=bfae789827f7f5a7c9a8d8c3e350fff5bae3718e diff --git a/webcit/preferences.c b/webcit/preferences.c index eaf6f7f42..d1db3cbf8 100644 --- a/webcit/preferences.c +++ b/webcit/preferences.c @@ -111,7 +111,7 @@ void save_preferences(void) { char *Key; Hash = WC->hash_prefs; - PrintHash(Hash, PrintPref, NULL); + dbg_PrintHash(Hash, PrintPref, NULL); HashPos = GetNewHashPos(); while (GetNextHashPos(Hash, HashPos, &len, &Key, &Value)!=0) { @@ -137,7 +137,7 @@ void get_preference(char *key, char *value, size_t value_len) { void *hash_value = NULL; strcpy(value, ""); - PrintHash(WC->hash_prefs, PrintPref, NULL); + dbg_PrintHash(WC->hash_prefs, PrintPref, NULL); if (GetHash(WC->hash_prefs, key, strlen(key), &hash_value) == 0) return;