From: Kevin P. Fleming Date: Sun, 2 Nov 2008 19:09:41 +0000 (+0000) Subject: fix small bug introduced while cleaning up compiler warnings X-Git-Tag: 1.6.2.0-beta1~974 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=60ef8fdae86fdc24e9e1f39c3fcb5a7dff9c9471;p=thirdparty%2Fasterisk.git fix small bug introduced while cleaning up compiler warnings git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@153618 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_musiconhold.c b/res/res_musiconhold.c index fd61cb7a83..c90c6fd117 100644 --- a/res/res_musiconhold.c +++ b/res/res_musiconhold.c @@ -941,7 +941,7 @@ static int moh_scan_files(struct mohclass *class) { ast_log(LOG_WARNING, "getcwd() failed: %s\n", strerror(errno)); return -1; } - if (chdir(path) < 0) { + if (chdir(dir_path) < 0) { ast_log(LOG_WARNING, "chdir() failed: %s\n", strerror(errno)); return -1; }