comparison stream/freesdp/parser.c @ 29263:0f1b5b68af32

whitespace cosmetics: Remove all trailing whitespace.
author diego
date Wed, 13 May 2009 02:58:57 +0000
parents 304ee75ca7ae
children 9e7e36fd3ba3
comparison
equal deleted inserted replaced
29262:7d545a6b8aff 29263:0f1b5b68af32
1 /* 1 /*
2 This file is part of FreeSDP 2 This file is part of FreeSDP
3 Copyright (C) 2001,2002,2003 Federico Montesino Pouzols <fedemp@altern.org> 3 Copyright (C) 2001,2002,2003 Federico Montesino Pouzols <fedemp@altern.org>
4 4
5 FreeSDP is free software; you can redistribute it and/or modify it 5 FreeSDP is free software; you can redistribute it and/or modify it
6 under the terms of the GNU General Public License as published by 6 under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or 7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version. 8 (at your option) any later version.
9 9
378 return FSDPE_INVALID_TIMEZONE; 378 return FSDPE_INVALID_TIMEZONE;
379 } 379 }
380 } 380 }
381 381
382 /* `k=' line (encryption key) [optional] */ 382 /* `k=' line (encryption key) [optional] */
383 /* k=<method> 383 /* k=<method>
384 k=<method>:<encryption key> */ 384 k=<method>:<encryption key> */
385 result = fsdp_parse_k (&p, &(dsc->k_encryption_method), 385 result = fsdp_parse_k (&p, &(dsc->k_encryption_method),
386 &(dsc->k_encryption_content)); 386 &(dsc->k_encryption_content));
387 if (result != FSDPE_OK) 387 if (result != FSDPE_OK)
388 return result; 388 return result;
685 &(media->bw_modifiers_count)); 685 &(media->bw_modifiers_count));
686 if (FSDPE_OK != result) 686 if (FSDPE_OK != result)
687 return result; 687 return result;
688 688
689 /* `k=' line (encryption key) [optional] */ 689 /* `k=' line (encryption key) [optional] */
690 /* k=<method> 690 /* k=<method>
691 k=<method>:<encryption key> */ 691 k=<method>:<encryption key> */
692 result = fsdp_parse_k (&p, &(media->k_encryption_method), 692 result = fsdp_parse_k (&p, &(media->k_encryption_method),
693 &(media->k_encryption_content)); 693 &(media->k_encryption_content));
694 if (result != FSDPE_OK) 694 if (result != FSDPE_OK)
695 return result; 695 return result;