summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorLaxmikant Rashinkar <LK.Rashinkar@gmail.com>2013-05-15 17:06:05 -0700
committerLaxmikant Rashinkar <LK.Rashinkar@gmail.com>2013-05-15 17:06:05 -0700
commit89b7cd269e7313fb06ea53d388272cbc57a3b3e0 (patch)
tree4791c9c687fc5c03eb784939a5c340604441be7a /common
parentcd0a8721d11e7cdd04561f3d8e226fbad0a147ce (diff)
downloadxrdp-proprietary-89b7cd269e7313fb06ea53d388272cbc57a3b3e0.tar.gz
xrdp-proprietary-89b7cd269e7313fb06ea53d388272cbc57a3b3e0.zip
smartcard: developer checkin for smartcard support
Diffstat (limited to 'common')
-rw-r--r--common/parse.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/common/parse.h b/common/parse.h
index ddaa87a6..49c2fa23 100644
--- a/common/parse.h
+++ b/common/parse.h
@@ -368,18 +368,18 @@ do \
} while (0)
/* copy data into stream */
-#define xstream_copyin(_s, _dest, _len) \
+#define xstream_copyin(_s, _dest, _len) \
do \
{ \
- g_memcpy((_s)->p, (_dest), (_len)); \
+ g_memcpy((_s)->p, (_dest), (_len)); \
(_s)->p += (_len); \
} while (0)
/* copy data out of stream */
-#define xstream_copyout(_dest, _s, _len) \
-{ \
+#define xstream_copyout(_dest, _s, _len) \
do \
- g_memcpy((_dest), (_s)->p, (_len)); \
+{ \
+ g_memcpy((_dest), (_s)->p, (_len)); \
(_s)->p += (_len); \
} while (0)