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

(-)src/main.c (-1 / +7 lines)
 Lines 184-189    Link Here 
184
	fprintf(stderr, "   -g   start from scratch (remove cache)\n");
184
	fprintf(stderr, "   -g   start from scratch (remove cache)\n");
185
	fprintf(stderr, "   -i   initialize handlers only\n");
185
	fprintf(stderr, "   -i   initialize handlers only\n");
186
	fprintf(stderr, "   -o   write transaction file\n");
186
	fprintf(stderr, "   -o   write transaction file\n");
187
	fprintf(stderr, "   -P   initialize handlers only, but not from scratch\n");
187
}
188
}
188
189
189
190
 Lines 388-394    Link Here 
388
	for (;;) {
389
	for (;;) {
389
		int c;
390
		int c;
390
391
391
		c = getopt(argc, argv, "d:FH:h:p:b:D:w:y:xZY:U:R:Km:Bc:giol:");
392
		c = getopt(argc, argv, "d:FH:h:p:b:D:w:y:xZY:U:R:Km:Bc:giol:P");
392
		if (c < 0)
393
		if (c < 0)
393
			break;
394
			break;
394
		switch (c) {
395
		switch (c) {
 Lines 479-484    Link Here 
479
		case 'B':
480
		case 'B':
480
			backup_notifier = 1;
481
			backup_notifier = 1;
481
			break;
482
			break;
483
		case 'P':
484
			foreground = true;
485
			from_scratch = false;
486
			initialize_only = true;
487
			break;
482
		default:
488
		default:
483
			usage();
489
			usage();
484
			exit(1);
490
			exit(1);

Return to bug 35165