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

(-)doc/kdm/kdmrc-ref.docbook (-1 / +1 lines)
Lines 1-4 Link Here
1
<!-- generated from /home/ossi/src/kde/head/kdebase/kdm/config.def - DO NOT EDIT! -->
1
<!-- generated from /home/dirk/src/kde/kdebase/kdm/config.def - DO NOT EDIT! -->
2
2
3
<chapter id="kdm-files">
3
<chapter id="kdm-files">
4
<title>The Files &kdm; Uses for Configuration</title>
4
<title>The Files &kdm; Uses for Configuration</title>
(-)kicker/core/main.cpp (-2 / +4 lines)
Lines 132-137 Link Here
132
    if (signal(SIGHUP, sighandler) == SIG_IGN)
132
    if (signal(SIGHUP, sighandler) == SIG_IGN)
133
	signal(SIGHUP, SIG_IGN);
133
	signal(SIGHUP, SIG_IGN);
134
134
135
    Kicker kicker;
135
    Kicker* kicker( new Kicker );
136
    return kicker.exec();
136
    int r = kicker.exec();
137
    delete kicker;
138
    return r;
137
}
139
}
(-)kioslave/nfs/mount_xdr.c (-2 / +2 lines)
Lines 219-225 Link Here
219
219
220
	  }
220
	  }
221
	  else {
221
	  else {
222
		 IXDR_PUT_LONG(buf,objp->pc_link_max);
222
		 IXDR_PUT_U_INT32(buf,objp->pc_link_max);
223
		 IXDR_PUT_SHORT(buf,objp->pc_max_canon);
223
		 IXDR_PUT_SHORT(buf,objp->pc_max_canon);
224
		 IXDR_PUT_SHORT(buf,objp->pc_max_input);
224
		 IXDR_PUT_SHORT(buf,objp->pc_max_input);
225
		 IXDR_PUT_SHORT(buf,objp->pc_name_max);
225
		 IXDR_PUT_SHORT(buf,objp->pc_name_max);
Lines 273-279 Link Here
273
273
274
	  }
274
	  }
275
	  else {
275
	  else {
276
		 objp->pc_link_max = IXDR_GET_LONG(buf);
276
		 objp->pc_link_max = IXDR_GET_U_INT32(buf);
277
		 objp->pc_max_canon = IXDR_GET_SHORT(buf);
277
		 objp->pc_max_canon = IXDR_GET_SHORT(buf);
278
		 objp->pc_max_input = IXDR_GET_SHORT(buf);
278
		 objp->pc_max_input = IXDR_GET_SHORT(buf);
279
		 objp->pc_name_max = IXDR_GET_SHORT(buf);
279
		 objp->pc_name_max = IXDR_GET_SHORT(buf);

Return to bug 117100