]> granicus.if.org Git - python/commitdiff
Fix indentation (whitespace only).
authorNeal Norwitz <nnorwitz@gmail.com>
Tue, 7 Feb 2006 06:59:20 +0000 (06:59 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Tue, 7 Feb 2006 06:59:20 +0000 (06:59 +0000)
Modules/_ssl.c

index fd5e2c629555c4b6c53bcbc64df0e2094356bfbd..b8097e100348483562f525d533f4b005955b5993 100644 (file)
@@ -266,7 +266,7 @@ newPySSLObject(PySocketSockObject *Sock, char *key_file, char *cert_file)
                } else {
                        sockstate = SOCKET_OPERATION_OK;
                }
-           if (sockstate == SOCKET_HAS_TIMED_OUT) {
+               if (sockstate == SOCKET_HAS_TIMED_OUT) {
                        PyErr_SetString(PySSLErrorObject, "The connect operation timed out");
                        goto fail;
                } else if (sockstate == SOCKET_HAS_BEEN_CLOSED) {
@@ -426,7 +426,7 @@ static PyObject *PySSL_SSLwrite(PySSLObject *self, PyObject *args)
                } else {
                        sockstate = SOCKET_OPERATION_OK;
                }
-           if (sockstate == SOCKET_HAS_TIMED_OUT) {
+               if (sockstate == SOCKET_HAS_TIMED_OUT) {
                        PyErr_SetString(PySSLErrorObject, "The write operation timed out");
                        return NULL;
                } else if (sockstate == SOCKET_HAS_BEEN_CLOSED) {
@@ -485,7 +485,7 @@ static PyObject *PySSL_SSLread(PySSLObject *self, PyObject *args)
                } else {
                        sockstate = SOCKET_OPERATION_OK;
                }
-           if (sockstate == SOCKET_HAS_TIMED_OUT) {
+               if (sockstate == SOCKET_HAS_TIMED_OUT) {
                        PyErr_SetString(PySSLErrorObject, "The read operation timed out");
                        Py_DECREF(buf);
                        return NULL;