diff options
author | jsorg71 <jsorg71> | 2009-09-07 18:54:03 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2009-09-07 18:54:03 +0000 |
commit | a4461e04d35a7fec0daef97f1af88db786148f8d (patch) | |
tree | 9e3a2da2fe78e5d8990bda5965f743c5423bb13d /common/file.c | |
parent | dc26b98025b5d7086306b709921ddb6c81e9cd99 (diff) | |
download | xrdp-proprietary-a4461e04d35a7fec0daef97f1af88db786148f8d.tar.gz xrdp-proprietary-a4461e04d35a7fec0daef97f1af88db786148f8d.zip |
allow ';' for comment too
Diffstat (limited to 'common/file.c')
-rw-r--r-- | common/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/file.c b/common/file.c index c5e7efd3..1d347750 100644 --- a/common/file.c +++ b/common/file.c @@ -105,7 +105,7 @@ file_read_line(struct stream* s, char* text) in_uint8(s, c); while (c != 10 && c != 13) { - if (c == '#' || c == '!') + if (c == '#' || c == '!' || c == ';') { skip_to_end = 1; } |