aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ppsocket.cc
diff options
context:
space:
mode:
authorFritz Elfert <felfert@to.com>2001-02-01 22:23:42 +0000
committerFritz Elfert <felfert@to.com>2001-02-01 22:23:42 +0000
commit4da48658c8f1dfbf5960bb1768dc6d154c528734 (patch)
treea8a68ce884fe90be6cfcb7c09ba9c40ec86639f6 /lib/ppsocket.cc
parent922027d66d65c570960234d9f5c32467b487715d (diff)
downloadplptools-4da48658c8f1dfbf5960bb1768dc6d154c528734.tar.gz
plptools-4da48658c8f1dfbf5960bb1768dc6d154c528734.tar.bz2
plptools-4da48658c8f1dfbf5960bb1768dc6d154c528734.zip
Added in missing plpdirent.cc
Added a small description of the KDE stuff in README Small fixes in rfsv16 and ppsocket.
Diffstat (limited to 'lib/ppsocket.cc')
-rw-r--r--lib/ppsocket.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ppsocket.cc b/lib/ppsocket.cc
index cfaa429..86ff4f4 100644
--- a/lib/ppsocket.cc
+++ b/lib/ppsocket.cc
@@ -504,7 +504,7 @@ bool ppsocket::
bindSocket(char *Host, int Port)
{
- // If we are already bound return FALSE but with no last error
+ // If we are already bound return false but with no last error
m_LastError = 0;
@@ -542,7 +542,7 @@ bindInRange(char *Host, int Low, int High, int Retries)
{
int port, i;
- // If we are already bound return FALSE but with no last error
+ // If we are already bound return false but with no last error
m_LastError = 0;
if (m_Bound) {
return (false);
@@ -627,7 +627,7 @@ createSocket(void)
return (false);
}
// By default set no lingering
- linger(FALSE, 0);
+ linger(false, 0);
// Return indicating success
return (true);
}