~ubuntu-branches/ubuntu/dapper/cdrdao/dapper

« back to all changes in this revision

Viewing changes to scsilib/libscg/scsi-wnt.c

  • Committer: Bazaar Package Importer
  • Author(s): Stephan Hermann
  • Date: 2005-12-10 22:52:11 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20051210225211-rn7q0g36wlbc9a3r
Tags: 1:1.2.1-2ubuntu1
* Resynchronise with debian (orig. debian package)
* Merged debian/changelog to mention ubuntu uploads
* Re-Applied Michael Vogts patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* @(#)scsi-wnt.c       1.43 04/04/22 Copyright 1998-2004 J. Schilling, A.L. Faber, J.A. Key */
 
1
/* @(#)scsi-wnt.c       1.45 04/07/19 Copyright 1998-2004 J. Schilling, A.L. Faber, J.A. Key */
2
2
#ifndef lint
3
3
static  char __sccsid[] =
4
 
        "@(#)scsi-wnt.c 1.43 04/04/22 Copyright 1998-2004 J. Schilling, A.L. Faber, J.A. Key";
 
4
        "@(#)scsi-wnt.c 1.45 04/07/19 Copyright 1998-2004 J. Schilling, A.L. Faber, J.A. Key";
5
5
#endif
6
6
/*
7
7
 *      Interface for the Win32 ASPI library.
65
65
 *      Choose your name instead of "schily" and make clear that the version
66
66
 *      string is related to a modified source.
67
67
 */
68
 
LOCAL   char    _scg_trans_version[] = "scsi-wnt.c-1.43";       /* The version for this transport*/
69
 
LOCAL   char    _scg_itrans_version[] = "SPTI-scsi-wnt.c-1.43"; /* The version for SPTI */
 
68
LOCAL   char    _scg_trans_version[] = "scsi-wnt.c-1.45";       /* The version for this transport*/
 
69
LOCAL   char    _scg_itrans_version[] = "SPTI-scsi-wnt.c-1.45"; /* The version for SPTI */
70
70
 
71
71
/*
72
72
 * Local defines and constants
398
398
                        if (*vers == '\0')
399
399
                                return (FALSE);
400
400
 
401
 
                        if (isdigit(vers) &&
 
401
                        if (isdigit(vers[0]) &&
402
402
                            (atoi(vers) >= 4 || isdigit(vers[1])))      /* Fom Service Pack 4 */
403
403
                                return (TRUE);                          /* same as for W2K */
404
404
                }
1455
1455
        scgp_errfile = (FILE *)scgp->errfile;
1456
1456
#endif
1457
1457
#ifdef  PREFER_SPTI
1458
 
        if (bUsingSCSIPT || !bForceAccess)
 
1458
        if (bUsingSCSIPT)
1459
1459
                if (InitSCSIPT() > 0) AspiLoaded++;
1460
1460
#endif
1461
1461
#ifdef  PREFER_SPTI