~ubuntu-branches/debian/sid/postfix/sid

« back to all changes in this revision

Viewing changes to src/util/dict_ni.c

  • Committer: Package Import Robot
  • Author(s): LaMont Jones
  • Date: 2012-03-20 13:47:16 UTC
  • mfrom: (1.1.34) (39.1.16 trunk)
  • Revision ID: package-import@ubuntu.com-20120320134716-o62kosz3odzt1rh6
Tags: 2.9.1-2
Drop unnecessary openssl check, since sonames will save us.

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
    ni_status r;
81
81
    ni_id   dir;
82
82
 
83
 
    dict_errno = 0;
84
 
 
85
83
    if (msg_verbose)
86
84
        msg_info("ni_lookup %s %s=%s", path, key_prop, key_value);
87
85
 
150
148
{
151
149
    DICT_NI *d = (DICT_NI *) dict;
152
150
 
 
151
    dict->error = 0;
 
152
 
153
153
    /*
154
154
     * Optionally fold the key.
155
155
     */
185
185
    d->dict.flags = dict_flags | DICT_FLAG_FIXED;
186
186
    if (dict_flags & DICT_FLAG_FOLD_FIX)
187
187
        d->dict.fold_buf = vstring_alloc(10);
 
188
    d->dict.owner.status = DICT_OWNER_TRUSTED;
188
189
 
189
190
    return (DICT_DEBUG (&d->dict));
190
191
}