search for: fork_child

Displaying 1 result from an estimated 1 matches for "fork_child".

2004 Jan 01
1
[PATCH] Add winbind-backed NTLMSSP support to Cyrus-SASL
...we have told ntlm_auth the password already */ + const char *authid; + const char *domain; +}; -/* copy src to dst as unicode (in Intel byte-order) */ -static void to_unicode(u_char *dst, const char *src, int len) -{ - for (; len; len--) { - *dst++ = *src++; - *dst++ = 0; - } -} +static int fork_child(struct ntlm_context *context, + const char *prog, + char * const argv[], + const sasl_utils_t *utils) -/* copy unicode src (in Intel byte-order) to dst */ -static void from_unicode(char *dst, u_char *src, int len) { - for (; len; len--) { - *dst++ = *src & 0x7f; - src...