~diwic/ubuntu/lucid/pulseaudio/bugfixes

« back to all changes in this revision

Viewing changes to src/modules/module-match.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2007-12-04 00:56:08 UTC
  • mto: (1.15.1 sid)
  • mto: This revision was merged to the branch mainline in revision 15.
  • Revision ID: james.westby@ubuntu.com-20071204005608-3lzrrrpxi186kgx4
Tags: upstream-0.9.8
ImportĀ upstreamĀ versionĀ 0.9.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: module-match.c 1971 2007-10-28 19:13:50Z lennart $ */
 
1
/* $Id: module-match.c 2043 2007-11-09 18:25:40Z lennart $ */
2
2
 
3
3
/***
4
4
  This file is part of PulseAudio.
46
46
 
47
47
#include "module-match-symdef.h"
48
48
 
49
 
PA_MODULE_AUTHOR("Lennart Poettering")
50
 
PA_MODULE_DESCRIPTION("Playback stream expression matching module")
51
 
PA_MODULE_USAGE("table=<filename>")
52
 
PA_MODULE_VERSION(PACKAGE_VERSION)
 
49
PA_MODULE_AUTHOR("Lennart Poettering");
 
50
PA_MODULE_DESCRIPTION("Playback stream expression matching module");
 
51
PA_MODULE_VERSION(PACKAGE_VERSION);
 
52
PA_MODULE_LOAD_ONCE(TRUE);
 
53
PA_MODULE_USAGE("table=<filename>");
53
54
 
54
55
#define WHITESPACE "\n\r \t"
55
56
 
241
242
 
242
243
    pa_xfree(u);
243
244
}
244
 
 
245