summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorjsorg71 <jsorg71>2006-10-24 04:05:38 +0000
committerjsorg71 <jsorg71>2006-10-24 04:05:38 +0000
commitf386cea14aff1cc7518be53aa0ab0a7787fc017b (patch)
tree2bea1fda836297b43d91d3d03a215ad3e508c65e /common
parentb610beb4ac5ce8e1516ff71e0da45014211e43b4 (diff)
downloadxrdp-proprietary-f386cea14aff1cc7518be53aa0ab0a7787fc017b.tar.gz
xrdp-proprietary-f386cea14aff1cc7518be53aa0ab0a7787fc017b.zip
make some functions static per 1579343
Diffstat (limited to 'common')
-rw-r--r--common/file.c4
-rw-r--r--common/log.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/common/file.c b/common/file.c
index afd0b75a..c12fa325 100644
--- a/common/file.c
+++ b/common/file.c
@@ -86,7 +86,7 @@ file_read_sections(int fd, struct list* names)
}
/*****************************************************************************/
-int APP_CC
+static int APP_CC
file_read_line(struct stream* s, char* text)
{
int i;
@@ -140,7 +140,7 @@ file_read_line(struct stream* s, char* text)
}
/*****************************************************************************/
-int APP_CC
+static int APP_CC
file_split_name_value(char* text, char* name, char* value)
{
int len;
diff --git a/common/log.c b/common/log.c
index 05461864..eb9e9feb 100644
--- a/common/log.c
+++ b/common/log.c
@@ -89,7 +89,7 @@ log_xrdp2syslog(const int lvl)
* @return syslog equivalent logging level
*
*/
-void DEFAULT_CC
+static void DEFAULT_CC
log_lvl2str(int lvl, char* str)
{
switch (lvl)