summaryrefslogtreecommitdiff
path: root/utils/astman.c
diff options
context:
space:
mode:
authorSean Bright <sean@malleable.com>2008-08-07 15:16:48 +0000
committerSean Bright <sean@malleable.com>2008-08-07 15:16:48 +0000
commit6305009cfc4a9ce54dc5ecbbaa9c10c51970b72c (patch)
tree76635e989b9cee45e1c0376675b4149a86bfe53e /utils/astman.c
parent83972093166956bb4e6f0991fc5f36b085415b82 (diff)
More merges from resolve-shadow warnings:
utils/ codecs/ and a change I missed from formats/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@136408 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'utils/astman.c')
-rw-r--r--utils/astman.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/astman.c b/utils/astman.c
index 3cfc27d81..a8b8e597a 100644
--- a/utils/astman.c
+++ b/utils/astman.c
@@ -626,7 +626,7 @@ static int manage_calls(char *host)
return 0;
}
-static int login(char *hostname)
+static int manager_login(char *hostname)
{
newtComponent form;
newtComponent cancel;
@@ -756,7 +756,7 @@ int main(int argc, char *argv[])
newtCls();
newtDrawRootText(0, 0, "Asterisk Manager (C)2002, Linux Support Services, Inc.");
newtPushHelpLine("Welcome to the Asterisk Manager!");
- if (login(argv[1])) {
+ if (manager_login(argv[1])) {
newtFinished();
exit(1);
}