libaacs | branch: master | npzacs <[email protected]> | Sun Apr 17 21:33:56 2011 +0300| [3a714da675c967bef5b6239881981dcc9c4f30e9] | committer: npzacs
Changed names of log control environment variables. libbluray can't use same log file. BD_DEBUG_FILE -> AACS_DEBUG_FILE BD_DEBUG_MASK -> AACS_DEBUG_MASK > http://git.videolan.org/gitweb.cgi/libaacs.git/?a=commit;h=3a714da675c967bef5b6239881981dcc9c4f30e9 --- src/util/logging.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util/logging.c b/src/util/logging.c index aca66fb..79e8835 100644 --- a/src/util/logging.c +++ b/src/util/logging.c @@ -47,11 +47,11 @@ void aacs_debug(const char *file, int line, uint32_t mask, const char *format, . logfile = stderr; char *env = NULL; - if ((env = getenv("BD_DEBUG_MASK"))) + if ((env = getenv("AACS_DEBUG_MASK"))) debug_mask = strtol(env, NULL, 0); // Send DEBUG to file? - if ((env = getenv("BD_DEBUG_FILE"))) { + if ((env = getenv("AACS_DEBUG_FILE"))) { FILE *fp = fopen(env, "wb"); if (fp) { logfile = fp; _______________________________________________ libaacs-devel mailing list [email protected] http://mailman.videolan.org/listinfo/libaacs-devel
