summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert James Kaes <rjkaes@users.sourceforge.net>2002-05-27 01:57:48 +0000
committerRobert James Kaes <rjkaes@users.sourceforge.net>2002-05-27 01:57:48 +0000
commit83a1a32f2a316090a1e120e24793fdf3ab977a57 (patch)
tree447a8a498e1da6da2bded1838154e898596ec0be
parentb11015c2e16d37258271cccb1e6842e58ace5b90 (diff)
downloadtinyproxy-83a1a32f2a316090a1e120e24793fdf3ab977a57.tar.gz
tinyproxy-83a1a32f2a316090a1e120e24793fdf3ab977a57.zip
(opensock): Changed a comment around to better state what the code is actually doing.
-rw-r--r--src/sock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sock.c b/src/sock.c
index 61d1729..02cfa03 100644
--- a/src/sock.c
+++ b/src/sock.c
@@ -1,4 +1,4 @@
-/* $Id: sock.c,v 1.36 2002-05-26 18:51:17 rjkaes Exp $
+/* $Id: sock.c,v 1.37 2002-05-27 01:57:48 rjkaes Exp $
*
* Sockets are created and destroyed here. When a new connection comes in from
* a client, we need to copy the socket and the create a second socket to the
@@ -93,7 +93,7 @@ opensock(char *ip_addr, uint16_t port)
return -1;
}
- /* Bind to our listening address*/
+ /* Bind to the specified address */
if (config.bind_address) {
memset(&bind_addr, 0, sizeof(bind_addr));
bind_addr.sin_family = AF_INET;