Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | - check that we have a complete definition before we try to read it (defect ↵ | Nalin Dahyabhai | 2011-01-03 | 1 | -2/+2 | |
| | | | | #10107) | |||||
* | - only clear 'supported' if it's not NULL (defect #10108) | Nalin Dahyabhai | 2011-01-03 | 1 | -1/+3 | |
| | ||||||
* | - don't bother checking that list is not NULL -- if it is, that's a bug | Nalin Dahyabhai | 2011-01-03 | 1 | -3/+1 | |
| | | | | in the caller (defect #10109) | |||||
* | - allocate 'tmp' as an array of 'char *', and not 'char **' (defect #10112) | Nalin Dahyabhai | 2011-01-03 | 1 | -1/+1 | |
| | ||||||
* | - don't leak a normalized dn on out-of-memory (defect #10106) | Nalin Dahyabhai | 2011-01-03 | 1 | -0/+1 | |
| | ||||||
* | - don't leak the poll fd array if we exit the thread on error (defect #10105) | Nalin Dahyabhai | 2011-01-03 | 1 | -0/+1 | |
| | ||||||
* | - don't leak an array of lengths (defect #10104) | Nalin Dahyabhai | 2011-01-03 | 1 | -0/+1 | |
| | ||||||
* | - don't leak memory on out-of-memory (defect #10103) | Nalin Dahyabhai | 2011-01-03 | 1 | -0/+1 | |
| | ||||||
* | - don't deref a null pointer on out-of-memory here (defect #10093) | Nalin Dahyabhai | 2011-01-03 | 1 | -0/+6 | |
| | ||||||
* | - allocate space for n integers, not n pointers to integers (defect #10110) | Nalin Dahyabhai | 2011-01-03 | 1 | -1/+1 | |
| | ||||||
* | - clear the whole array of structures before filling it, instead of the | Nalin Dahyabhai | 2011-01-03 | 1 | -2/+2 | |
| | | | | | first sizeof(size_t) bytes (which would have been fine for 1 entry) (defect #10089) | |||||
* | - clear the whole reply structure before use instead of just the initial ↵ | Nalin Dahyabhai | 2011-01-03 | 1 | -1/+1 | |
| | | | | part (defect #10088) | |||||
* | - compile and link also using LDAP_CFLAGS and LDAP_LIBS | Nalin Dahyabhai | 2010-12-22 | 1 | -5/+5 | |
| | ||||||
* | cast ber_len_t lengths to (int) when we use them to limit string lengths | Nalin Dahyabhai | 2010-12-22 | 1 | -15/+17 | |
| | | | | in diagnostic messages | |||||
* | - for containers which are also the groups, don't return the container | Nalin Dahyabhai | 2010-11-23 | 1 | -3/+5 | |
| | | | | | entry as a search result if it's also the group entry (in which case we already looked at the entry) | |||||
* | - also, call the right function | Nalin Dahyabhai | 2010-11-23 | 1 | -1/+1 | |
| | ||||||
* | - whoops, enforce the right argument count | Nalin Dahyabhai | 2010-11-23 | 1 | -2/+2 | |
| | ||||||
* | - break up %deref into %deref and %deref_f | Nalin Dahyabhai | 2010-11-23 | 1 | -44/+107 | |
| | | | | - add %deref_fr as an alias for %deref_rf | |||||
* | - fix a brown-paper-bag crash in the schema-compat pluginslapi-nis-0.19 | Nalin Dahyabhai | 2010-11-22 | 1 | -1/+1 | |
| | ||||||
* | - handle a group with no explicitly-named container by treating the | Nalin Dahyabhai | 2010-11-22 | 2 | -19/+55 | |
| | | | | entries as direct subordinates of the group entry | |||||
* | - use the filter at the right point in walking a chain | Nalin Dahyabhai | 2010-11-22 | 1 | -3/+37 | |
| | | | | - add a test for deref_rf | |||||
* | - teach wrap_search_internal_get_entry to take an optional filter | Nalin Dahyabhai | 2010-11-22 | 5 | -109/+21 | |
| | | | | | - where we were applying a filter test after retrieving an entry, just let the retrieval function do it | |||||
* | - try to factor deref_r and its corresponding update code into | Nalin Dahyabhai | 2010-11-22 | 3 | -50/+197 | |
| | | | | optionally handling filters at each step of the way | |||||
* | Check that the search base is serviced by a real backend before we'll ↵ | Nalin Dahyabhai | 2010-11-22 | 1 | -0/+9 | |
| | | | | attempt to participate in a search request. | |||||
* | - more logging | Nalin Dahyabhai | 2010-11-19 | 1 | -0/+24 | |
| | ||||||
* | - more debug logging | Nalin Dahyabhai | 2010-11-19 | 1 | -10/+18 | |
| | ||||||
* | - initialize map_supported so that when we debug log we output it right | Nalin Dahyabhai | 2010-11-19 | 1 | -0/+1 | |
| | ||||||
* | - do a full clear of some temporaries (valgrind) | Nalin Dahyabhai | 2010-11-18 | 1 | -0/+2 | |
| | ||||||
* | - don't walk off the end of the filter array, but expect it to be of the | Nalin Dahyabhai | 2010-11-18 | 1 | -1/+1 | |
| | | | | right length | |||||
* | - add optional caching of filters to attribute lists | Nalin Dahyabhai | 2010-11-18 | 2 | -19/+51 | |
| | ||||||
* | - use actual slapi_filter structures to avoid reparsing | Nalin Dahyabhai | 2010-11-18 | 2 | -4/+14 | |
| | ||||||
* | - manage filters along with chains of attributes and search bases | Nalin Dahyabhai | 2010-11-18 | 2 | -4/+23 | |
| | ||||||
* | - return unwilling-to-perform instead of insufficient-access in response | Nalin Dahyabhai | 2010-08-02 | 1 | -2/+2 | |
| | | | | to write requests | |||||
* | - note whether or not the map is "secure" regardless of whether or not | Nalin Dahyabhai | 2009-06-18 | 1 | -5/+5 | |
| | | | | we were able to find a matching key | |||||
* | - actually send portmap registrations to the right serverslapi-nis-0.17 | Nalin Dahyabhai | 2009-05-14 | 1 | -1/+1 | |
| | ||||||
* | - when not configured to use a specific port, bindresvport to a datagram | Nalin Dahyabhai | 2009-05-14 | 1 | -3/+4 | |
| | | | | | socket so that we avoid trying to use the same one that we might be using for a portmap client socket | |||||
* | - try to set the reuse-address socket option at the right level (socket, | Nalin Dahyabhai | 2009-05-14 | 1 | -2/+2 | |
| | | | | not IP) this time | |||||
* | - changes to comments | Nalin Dahyabhai | 2009-05-07 | 1 | -4/+5 | |
| | ||||||
* | - remove that debug message, it's redundant | Nalin Dahyabhai | 2009-05-07 | 1 | -1/+0 | |
| | ||||||
* | - log more details | Nalin Dahyabhai | 2009-05-07 | 1 | -9/+30 | |
| | ||||||
* | - make sure that %referred() and %deref() don't return empty strings | Nalin Dahyabhai | 2009-05-07 | 1 | -8/+10 | |
| | ||||||
* | - remove unused variables | Nalin Dahyabhai | 2009-05-06 | 3 | -7/+2 | |
| | ||||||
* | - revert to registering plugins at init-time, which is what the docs | Nalin Dahyabhai | 2009-05-06 | 4 | -66/+90 | |
| | | | | | | say we should do - use whether or not the plugin_base is initialized as in indicator of whether the plugin's been started or not | |||||
* | - register our internal pre-/post-/internalpre-op plugins at | Nalin Dahyabhai | 2009-05-06 | 2 | -78/+92 | |
| | | | | startup-time, so that the hooks will only be used if we're enabled | |||||
* | - add the list of function parameters to debugged invocation failure log | Nalin Dahyabhai | 2009-04-30 | 1 | -2/+2 | |
| | | | | messages | |||||
* | - fix format_link() to not corrupt the heap with some bad math | Nalin Dahyabhai | 2009-04-30 | 1 | -29/+43 | |
| | ||||||
* | - only clear the backend_data return pointer if we were given one -- it's | Nalin Dahyabhai | 2009-04-30 | 1 | -2/+6 | |
| | | | | | an optional argument, and we were already checking for non-NULL later on when assigning it a real value | |||||
* | - fix type mismatch warnings | Nalin Dahyabhai | 2009-04-27 | 4 | -25/+28 | |
| | ||||||
* | - fix some crashes by dereferencing uninitialized pointers when | Nalin Dahyabhai | 2009-04-27 | 1 | -0/+26 | |
| | | | | retrieving information from a map fails | |||||
* | - make the defaults use recursive support for attribute values | Nalin Dahyabhai | 2009-03-04 | 1 | -4/+4 | |
| |