By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 2159
Collapse All | Expand All

(-)a/kscd/libwm/plat_openbsd.c (-4 / +5 lines)
Lines 57-63 Link Here
57
#include <sys/scsiio.h>
57
#include <sys/scsiio.h>
58
#include <scsi/scsi_all.h>
58
#include <scsi/scsi_all.h>
59
#include <scsi/cd.h>
59
#include <scsi/cd.h>
60
#include <scsi/scsi_cd.h>
61
60
62
#include "include/wm_struct.h"
61
#include "include/wm_struct.h"
63
#include "include/wm_cdtext.h"
62
#include "include/wm_cdtext.h"
Lines 127-136 wmcd_open(struct wm_drive *d) Link Here
127
  
126
  
128
  find_drive_struct(vendor, model, rev);
127
  find_drive_struct(vendor, model, rev);
129
  
128
  
130
  (d->init)(d);
131
  
132
  d->fd = fd;
129
  d->fd = fd;
133
  
130
  
131
  if (d->proto->gen_init) {
132
    return (d->proto->gen_init)(d);
133
  }
134
134
  return (0);
135
  return (0);
135
} /* wmcd_open() */
136
} /* wmcd_open() */
136
137
Lines 314-320 gen_get_cdlen(struct wm_drive *d, int *frames) Link Here
314
 * Play the CD from one position to another (both in frames.)
315
 * Play the CD from one position to another (both in frames.)
315
 */
316
 */
316
int
317
int
317
gen_play(struct wm_drive *d, int start, int end)
318
gen_play(struct wm_drive *d, int start, int end, int realstart)
318
{
319
{
319
  struct ioc_play_msf	msf;
320
  struct ioc_play_msf	msf;
320
  
321
  

Return to bug 2159