Searched defs:RHS (Results 1 - 2 of 2) sorted by relevance

/osnet-11/usr/src/lib/libresolv2/common/irs/
H A Dhesiod_p.h38 char * RHS; /*%< AKA the default hesiod domain */ member in struct:hesiod_p
H A Dhesiod.c94 ctx->RHS = malloc(strlen(DEF_RHS) + 1);
95 if (ctx->LHS == NULL || ctx->RHS == NULL) {
100 strcpy(ctx->RHS, DEF_RHS); /* (checked) */
106 * The default RHS can be overridden by an environment
111 if (ctx->RHS)
112 free(ctx->RHS);
113 ctx->RHS = malloc(RHSlen);
114 if (!ctx->RHS) {
119 strcpy(ctx->RHS, cp); /* (checked) */
121 strcpy(ctx->RHS, "
177 const char *RHS, *cp; local
[all...]

Completed in 535 milliseconds