Changeset 107
- Timestamp:
- 21/10/08 13:56:38 (3 months ago)
- Files:
-
- 1 modified
-
jggtrans/src/acl.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
jggtrans/src/acl.c
r34 r107 84 84 jid=jid_normalized(from,0); 85 85 if (jid==NULL){ 86 debug( L_("Not Allowed - bad 'from'"));86 debug("ACL: %s", L_("Not Allowed - bad 'from'")); 87 87 return 0; 88 88 } … … 103 103 xmlnode_free(x); 104 104 g_free(jid); 105 if (result) debug( L_("Allowed"));106 else debug( L_("Denied"));105 if (result) debug("ACL: %s", L_("Allowed")); 106 else debug("ACL: %s", L_("Denied")); 107 107 return result; 108 108 }
