aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-03-02 11:26:34 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-03-02 11:26:34 +0300
commit5d60a480a04f3d49843e8e5457257e53ab2767e9 (patch)
tree8f6c4d697730a641053544147d528b37f4fa538f
parent46a8b84760a08c87b3b707ecb30797b245827361 (diff)
downloadlibmicrohttpd-5d60a480a04f3d49843e8e5457257e53ab2767e9.tar.gz
libmicrohttpd-5d60a480a04f3d49843e8e5457257e53ab2767e9.zip
Fixed typos introduced by cf9bb9428f0065cf0ca8ef2c726933b4db2385f1
-rw-r--r--src/microhttpd/daemon.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index 95239427..710727b9 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -756,7 +756,7 @@ static void
756urh_from_fdset (struct MHD_UpgradeResponseHandle *urh, 756urh_from_fdset (struct MHD_UpgradeResponseHandle *urh,
757 const fd_set *rs, 757 const fd_set *rs,
758 const fd_set *ws, 758 const fd_set *ws,
759 const fd_set *es,) 759 const fd_set *es)
760{ 760{
761 const MHD_socket conn_sckt = urh->connection->socket_fd; 761 const MHD_socket conn_sckt = urh->connection->socket_fd;
762 const MHD_socket mhd_sckt = urh->mhd.socket; 762 const MHD_socket mhd_sckt = urh->mhd.socket;
@@ -1521,7 +1521,7 @@ thread_main_connection_upgrade (struct MHD_Connection *con)
1521 } 1521 }
1522 urh_from_fdset (urh, 1522 urh_from_fdset (urh,
1523 &rs, 1523 &rs,
1524 &ws 1524 &ws,
1525 &es); 1525 &es);
1526 process_urh (urh); 1526 process_urh (urh);
1527 if ( (0 == urh->in_buffer_size) && 1527 if ( (0 == urh->in_buffer_size) &&