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

Collapse All | Expand All

(-)whois.c (-1 / +1 lines)
Lines 78-84 int main(int argc, char *argv[]) Link Here
78
	}
78
	}
79
	if (strchr(ripeflagsp, ch)) {
79
	if (strchr(ripeflagsp, ch)) {
80
	    for (p = fstring; *p; p++);
80
	    for (p = fstring; *p; p++);
81
	    sprintf(p--, "-%c %s ", ch, optarg);
81
	    snprintf(p--, sizeof(fstring), "-%c %s ", ch, optarg);
82
	    if (ch == 't' || ch == 'v' || ch == 'q')
82
	    if (ch == 't' || ch == 'v' || ch == 'q')
83
		nopar = 1;
83
		nopar = 1;
84
	    continue;
84
	    continue;

Return to bug 24860