search for: 00361

Displaying 2 results from an estimated 2 matches for "00361".

Did you mean: 10361
2010 Jul 07
3
Message: "err:psdrv:PSDRV_PPDGetNextTuple Line too long."
...********************************************************************* 00355 * 00356 * PSDRV_PPDGetNextTuple 00357 * 00358 * Gets the next Keyword Option Value tuple from the file. Allocs space off 00359 * the process heap which should be free()ed by the caller if not needed. 00360 */ 00361 static BOOL PSDRV_PPDGetNextTuple(FILE *fp, PPDTuple *tuple) 00362 { 00363 char line[257], *opt, *cp, *trans, *endkey; 00364 BOOL gotoption; 00365 00366 start: 00367 00368 gotoption = TRUE; 00369 opt = NULL; 00370 memset(tuple, 0, sizeof(*tuple)); 00371 00372 do { 00373...
2019 Sep 28
9
[PATCH nbdkit v2 0/4] info: Add mode for sending back server time.
v1 was: https://www.redhat.com/archives/libguestfs/2019-September/thread.html#00361 v2: - Adds a patch to rename the reflection plugin to the info plugin. - Adds tests. Rich.