Home
last modified time | relevance | path

Searched refs:domain_copy (Results 1 – 6 of 6) sorted by relevance

/dports/net/nss_ldap/nss_ldap-265/
H A Ddnsconfig.c74 char *domain, *domain_copy; in _nss_ldap_getdnsdn() local
79 domain_copy = strdup (src_domain); in _nss_ldap_getdnsdn()
80 if (domain_copy == NULL) in _nss_ldap_getdnsdn()
85 domain = domain_copy; in _nss_ldap_getdnsdn()
100 free (domain_copy); in _nss_ldap_getdnsdn()
128 free (domain_copy); in _nss_ldap_getdnsdn()
/dports/graphics/geomorph/geomorph-0.60.1/src/utils/
H A Dconfig_dialog.c359 gchar *domain_copy, *next; in get_element_index_in_domain() local
360domain_copy = (gchar *) x_malloc (1+strlen(domain), "gchar (domain_copy in get_element_index_in_do… in get_element_index_in_domain()
361 strcpy(domain_copy,domain); in get_element_index_in_domain()
362 next = strtok(domain_copy, sep); in get_element_index_in_domain()
368 x_free(domain_copy); in get_element_index_in_domain()
374 x_free(domain_copy); in get_element_index_in_domain()
386 gchar *domain_copy, *next, *output_string; in get_string_from_element_index_in_domain() local
388domain_copy = (gchar *) x_malloc (1+strlen(domain), "gchar (domain_copy in get_string_from_element… in get_string_from_element_index_in_domain()
389 strcpy(domain_copy,domain); in get_string_from_element_index_in_domain()
390 next = strtok(domain_copy, sep); in get_string_from_element_index_in_domain()
[all …]
/dports/mail/cyrus-imapd32/cyrus-imapd-3.2.8/ptclient/
H A Dldap.c626 char *domain_copy; in ptsmodule_standard_root_dn() local
637 domain_copy = xstrdup(domain); in ptsmodule_standard_root_dn()
638 part = strtok_r(domain_copy, ".", &tok_state); in ptsmodule_standard_root_dn()
653 free(domain_copy); in ptsmodule_standard_root_dn()
/dports/mail/cyrus-imapd34/cyrus-imapd-3.4.2/ptclient/
H A Dldap.c626 char *domain_copy; in ptsmodule_standard_root_dn() local
637 domain_copy = xstrdup(domain); in ptsmodule_standard_root_dn()
638 part = strtok_r(domain_copy, ".", &tok_state); in ptsmodule_standard_root_dn()
653 free(domain_copy); in ptsmodule_standard_root_dn()
/dports/mail/cyrus-imapd30/cyrus-imapd-3.0.16/ptclient/
H A Dldap.c637 char *domain_copy; in ptsmodule_standard_root_dn() local
648 domain_copy = xstrdup(domain); in ptsmodule_standard_root_dn()
649 part = strtok_r(domain_copy, ".", &tok_state); in ptsmodule_standard_root_dn()
664 free(domain_copy); in ptsmodule_standard_root_dn()
/dports/astro/p5-Starlink-AST/Starlink-AST-1.05/ast/
H A Dframe.c3875 char *domain_copy; /* Pointer to copy of result domain */ in FindFrame() local
3919 domain_copy = astMalloc( strlen( domain ) + (size_t) 3 ); in FindFrame()
3923 domain_copy[ 0 ] = ','; in FindFrame()
3925 domain_copy[ j++ ] = domain[ i ]; in FindFrame()
3927 domain_copy[ j++ ] = ','; in FindFrame()
3928 domain_copy[ j ] = '\0'; in FindFrame()
3933 if ( strstr( domainlist_copy, domain_copy ) || in FindFrame()
3948 domain_copy = astFree( domain_copy ); in FindFrame()