summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-04-29 20:26:15 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-04-29 20:26:15 +0000
commit146131e390afce4afa5df14f46465d17f10c05b6 (patch)
tree58f8571c6aeb6ae82c96b6f090d0db584809093d /apps
parent74eac0c437af88ef1dae7a95aeff6cc74c5667ec (diff)
downloadATCD-146131e390afce4afa5df14f46465d17f10c05b6.tar.gz
ChangeLogTag:Sat Apr 29 13:20:11 2000 Darrell Brunsch <brunsch@uci.edu>
Diffstat (limited to 'apps')
-rw-r--r--apps/drwho/PMS_All.cpp10
-rw-r--r--apps/drwho/PMS_Ruser.cpp6
2 files changed, 9 insertions, 7 deletions
diff --git a/apps/drwho/PMS_All.cpp b/apps/drwho/PMS_All.cpp
index 4da158517e7..dfd7536029f 100644
--- a/apps/drwho/PMS_All.cpp
+++ b/apps/drwho/PMS_All.cpp
@@ -31,10 +31,12 @@ PMS_All::encode (char *packet, int &packet_length)
for (;
(prp = this->get_next_friend ()) != 0;
*buf_ptr++ = '\t')
- buf_ptr = this->handle_protocol_entries (ACE_OS::strecpy (ACE::strecpy (buf_ptr,
- prp->get_login ()),
- prp->get_real ()),
- prp->get_drwho_list ());
+ buf_ptr =
+ this->handle_protocol_entries (ACE_OS::strecpy
+ (ACE_OS::strecpy (buf_ptr,
+ prp->get_login ()),
+ prp->get_real ()),
+ prp->get_drwho_list ());
*buf_ptr++ = '\n';
packet_length = buf_ptr - packet;
diff --git a/apps/drwho/PMS_Ruser.cpp b/apps/drwho/PMS_Ruser.cpp
index dbfcd412405..2e7e55bf980 100644
--- a/apps/drwho/PMS_Ruser.cpp
+++ b/apps/drwho/PMS_Ruser.cpp
@@ -115,9 +115,9 @@ PMS_Ruser::handle_protocol_entries (char *buf_ptr,
np->get_active_count ());
buf_ptr += ACE_OS::strlen (buf_ptr);
- buf_ptr = ACE::strecpy (ACE_OS::strecpy (buf_ptr,
- np->get_login_name ()),
- np->get_real_name ());
+ buf_ptr = ACE_OS::strecpy (ACE_OS::strecpy (buf_ptr,
+ np->get_login_name ()),
+ np->get_real_name ());
}
return buf_ptr;