Overview
Comment: | Fix a typo that only affects case-sensitive file systems. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
f002ad5119c68534fed6f28af908b2b0 |
User & Date: | js on 2011-03-28 20:46:54 |
Other Links: | manifest | tags |
Context
2011-03-28
| ||
21:38 | Have one global ctx. check-in: daea63b67c user: js tags: trunk | |
20:46 | Fix a typo that only affects case-sensitive file systems. check-in: f002ad5119 user: js tags: trunk | |
20:41 | Add Xcode project. check-in: 4067b9e55c user: js tags: trunk | |
Changes
Modified src/SSLSocket.m from [81aea29e44] to [0f40846643].
1 2 3 4 5 6 7 8 9 | #include <unistd.h> #include <errno.h> #include <assert.h> #import <ObjFW/OFHTTPRequest.h> #import "SSLSocket.h" #import <ObjFW/OFAcceptFailedException.h> | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #include <unistd.h> #include <errno.h> #include <assert.h> #import <ObjFW/OFHTTPRequest.h> #import "SSLSocket.h" #import <ObjFW/OFAcceptFailedException.h> #import <ObjFW/OFConnectionFailedException.h> #import <ObjFW/OFInitializationFailedException.h> #import <ObjFW/OFNotConnectedException.h> #import <ObjFW/OFOutOfRangeException.h> #import <ObjFW/OFReadFailedException.h> #import <ObjFW/OFWriteFailedException.h> #ifndef INVALID_SOCKET |
︙ | ︙ |