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

Collapse All | Expand All

(-)man/rpcbind.8.ORIG (-8 lines)
Lines 127-140 Link Here
127
clients from using
127
clients from using
128
.Nm
128
.Nm
129
to connect to services from a privileged port.
129
to connect to services from a privileged port.
130
.It Fl w
131
Cause
132
.Nm
133
to do a "warm start" by read a state file when
134
.Nm
135
starts up. The state file is created when
136
.Nm
137
terminates.
138
.El
130
.El
139
.Sh NOTES
131
.Sh NOTES
140
All RPC servers must be restarted if
132
All RPC servers must be restarted if
(-)src/rpcbind.c.ORIG (-1 / +6 lines)
Lines 764-770 Link Here
764
			break;
764
			break;
765
#endif
765
#endif
766
		default:	/* error */
766
		default:	/* error */
767
			fprintf(stderr,	"usage: rpcbind [-Idwils]\n");
767
#ifdef WARMSTART
768
#define RPCBIND_VALID_OPTS "-Idwils"
769
#else
770
#define RPCBIND_VALID_OPTS "-Idils"
771
#endif
772
			fprintf(stderr,	"usage: rpcbind [%s]\n", RPCBIND_VALID_OPTS);
768
			exit (1);
773
			exit (1);
769
		}
774
		}
770
	}
775
	}

Return to bug 440286