~ubuntu-branches/debian/sid/ndiswrapper/sid

« back to all changes in this revision

Viewing changes to driver/rtl.c

  • Committer: Package Import Robot
  • Author(s): Julian Andres Klode
  • Date: 2011-11-25 16:45:32 UTC
  • mto: (1.3.14)
  • mto: This revision was merged to the branch mainline in revision 14.
  • Revision ID: package-import@ubuntu.com-20111125164532-t3el9iq2brq77sl9
Tags: upstream-1.57~rc1
ImportĀ upstreamĀ versionĀ 1.57~rc1

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
        x = (char *)a;
26
26
        y = (char *)b;
27
27
        /* MSDN says this should return number of bytes that compare as
28
 
         * equal. This can be interpretted as either all bytes that are
 
28
         * equal. This can be interpreted as either all bytes that are
29
29
         * equal in 'len' bytes or that only until the bytes compare as
30
30
         * not equal. Initially we had it the former way, but Realtek driver
31
31
         * doesn't like it that way - it takes many attempts to associate
32
32
         * with WPA. ReactOS returns the number of bytes that are equal
33
 
         * upto when they compare as not equal.
 
33
         * before the first differing byte.
34
34
         * According to lords at #reactos, that is the way it should be
35
35
         * and that msdn is wrong about it!
36
36
         */