Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 103188 | Differences between
and this patch

Collapse All | Expand All

(-)ifp.c.orig (-2 / +2 lines)
Lines 43-50 Link Here
43
    if (strstr(argv[0],"/mc/extfs/"))
43
    if (strstr(argv[0],"/mc/extfs/"))
44
	is_mc = IS_MC; else is_mc = IS_IFP;
44
	is_mc = IS_MC; else is_mc = IS_IFP;
45
45
46
    /* no command */
46
    /* no command, or help */
47
    if (argc < 2) {
47
    if (argc < 2 || strstr(argv[1], "help") || !strcmp("-h", argv[1])) {
48
	help(argv[0]);
48
	help(argv[0]);
49
	return 0;
49
	return 0;
50
    }
50
    }

Return to bug 103188