View | Details | Raw Unified | Return to bug 12618
Collapse All | Expand All

(-)pop_init.c (-7 / +10 lines)
Lines 237-240 Link Here
237
                    pop_log(p,POP_PRIORITY,
237
                    pop_log(p,POP_PRIORITY,
238
                        "Unable to open trace file \"%s\", err = %d",
238
                        "Unable to open trace file \"%s\": ",
239
                            optarg,errno);
239
                            optarg, strerror(errno));
240
                    exit(1);
240
                    exit(1);
Lines 268-270 Link Here
268
        pop_log(p,POP_PRIORITY,
268
        pop_log(p,POP_PRIORITY,
269
            "Unable to obtain socket and address of client, err = %d",errno);
269
            "Unable to obtain socket and address of client: %s",
270
		strerror(errno));
270
        exit(1);
271
        exit(1);
Lines 283-286 Link Here
283
        pop_log(p,POP_PRIORITY,
284
        pop_log(p,POP_PRIORITY,
284
            "(v%s) Unable to get canonical name of client, err = %d",
285
            "(v"VERSION") Unable to get canonical name of client %s: %s",
285
	    VERSION, errno);
286
	    p->ipaddr, hstrerror(h_errno));
286
        p->client = p->ipaddr;
287
        p->client = p->ipaddr;
Lines 362-364 Link Here
362
        pop_log(p,POP_PRIORITY,
363
        pop_log(p,POP_PRIORITY,
363
            "Unable to open communication stream for input, err = %d",errno);
364
            "Unable to open communication stream for input: ",
365
		strerror(errno));
364
        exit (1);
366
        exit (1);
Lines 369-371 Link Here
369
        pop_log(p,POP_PRIORITY,
371
        pop_log(p,POP_PRIORITY,
370
            "Unable to open communication stream for output, err = %d",errno);
372
            "Unable to open communication stream for output: ",
373
		strerror(errno));
371
        exit (1);
374
        exit (1);

Return to bug 12618