Home
last modified time | relevance | path

Searched refs:MAXALIASLEN (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/cmd/ypcmd/
H A Dypalias.c92 retval = yp_getalias(name, result, MAXALIASLEN);
95 if ((int)strlen(name) > MAXALIASLEN) {
96 (void) strncpy(result, name, MAXALIASLEN-4);
97 (void) strncpy(&result[MAXALIASLEN-4],
99 result[MAXALIASLEN] = '\0';
102 } else if ((retval) && (int)strlen(result) > MAXALIASLEN) {
103 (void) strncpy(tmpbuf, result, MAXALIASLEN);
H A Dmakedbm.c239 if (yp_getalias(last_slash+1, outaliasmap, MAXALIASLEN) < 0) {
240 if ((int)strlen(last_slash+1) <= MAXALIASLEN)
271 if (yp_getalias(last_slash+1, outaliasmap, MAXALIASLEN) < 0) {
272 if ((int)strlen(last_slash+1) <= MAXALIASLEN)
289 if (yp_getalias(outfile, outalias, MAXALIASLEN) < 0) {
290 if ((int)strlen(last_slash+1) <= MAXALIASLEN)
H A Dypserv_ancil.c151 MAXALIASLEN) < 0) {
162 MAXALIASLEN) < 0) {
H A Dypsym.h90 #define MAXALIASLEN 8 macro
H A Dyppush.c276 if (yp_getalias(map, map_alias, MAXALIASLEN) != 0) in main()