158: if (warn != IN_NONE && getenv(YEAR_2000_NAME) != NULL) {
159: (void) fprintf(stderr, "\n");
160: if (format == NULL)
161: (void) fprintf(stderr, "NULL strftime format ");
162: else (void) fprintf(stderr, "strftime format \"%s\" ",
163: format);
164: (void) fprintf(stderr, "yields only two digits of years in ");
165: if (warn == IN_SOME)
166: (void) fprintf(stderr, "some locales");
167: else if (warn == IN_THIS)
168: (void) fprintf(stderr, "the current locale");
169: else (void) fprintf(stderr, "all locales");
170: (void) fprintf(stderr, "\n");
171: }