summaryrefslogtreecommitdiff
path: root/src/connectionList.cpp
diff options
context:
space:
mode:
authorOthmar Gsenger <otti@anytun.org>2008-12-11 14:52:19 +0000
committerOthmar Gsenger <otti@anytun.org>2008-12-11 14:52:19 +0000
commit90f60801f8508807b6d9b146a5e12bd42745edc0 (patch)
treee41b03d533d1666a349da49c07e94c8430690aa0 /src/connectionList.cpp
parentmainly type and define fixes (diff)
some type fixes
Diffstat (limited to 'src/connectionList.cpp')
-rw-r--r--src/connectionList.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/connectionList.cpp b/src/connectionList.cpp
index d272a03..a0d4abf 100644
--- a/src/connectionList.cpp
+++ b/src/connectionList.cpp
@@ -116,12 +116,12 @@ ConnectionParam & ConnectionList::getOrNewConnectionUnlocked(u_int16_t mux)
if(it!=connections_.end())
return it->second;
- uint8_t key[] = {
+ u_int8_t key[] = {
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h',
'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p'
};
- uint8_t salt[] = {
+ u_int8_t salt[] = {
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h',
'i', 'j', 'k', 'l', 'm', 'n'
};