diff options
author | LawrenceK <github@lklyne.co.uk> | 2012-12-06 09:07:40 +0000 |
---|---|---|
committer | LawrenceK <github@lklyne.co.uk> | 2012-12-06 09:07:40 +0000 |
commit | d834533dfb103dd26f23055796894b52194b9b74 (patch) | |
tree | 1a0b5e646897a471ce2e45deef9c672ff383b8cf /libxrdp | |
parent | 9d541ebf1af2f39a0d6ea13e2fa95fee2fe76efc (diff) | |
download | xrdp-proprietary-d834533dfb103dd26f23055796894b52194b9b74.tar.gz xrdp-proprietary-d834533dfb103dd26f23055796894b52194b9b74.zip |
fix SSE2 debug line, and add some debug of config settings.
Diffstat (limited to 'libxrdp')
-rw-r--r-- | libxrdp/xrdp_rdp.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libxrdp/xrdp_rdp.c b/libxrdp/xrdp_rdp.c index bf0f8f4e..defc7624 100644 --- a/libxrdp/xrdp_rdp.c +++ b/libxrdp/xrdp_rdp.c @@ -77,12 +77,14 @@ xrdp_rdp_read_config(struct xrdp_client_info *client_info) values = list_create(); values->auto_free = 1; g_snprintf(cfg_file, 255, "%s/xrdp.ini", XRDP_CFG_PATH); + DEBUG(("cfg_file %s", cfg_file)); file_by_name_read_section(cfg_file, "globals", items, values); for (index = 0; index < items->count; index++) { item = (char *)list_get_item(items, index); value = (char *)list_get_item(values, index); + DEBUG(("item %s value %s", item, value)); if (g_strcasecmp(item, "bitmap_cache") == 0) { @@ -193,7 +195,7 @@ xrdp_rdp_detect_cpu(void) if (edx & (1 << 26)) { - DEBUG("SSE2 detected"); + DEBUG(("SSE2 detected")); cpu_opt |= CPU_SSE2; } |