mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-19 03:08:45 +00:00
don't use '%i' at all, since we have no current use cases that need non base-10 parsing (bug #4110)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5533 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -859,7 +859,7 @@ static int last_message_index(char *dir)
|
||||
SQLFreeHandle (SQL_HANDLE_STMT, stmt);
|
||||
goto yuck;
|
||||
}
|
||||
if (sscanf(rowdata, "%i", &x) != 1)
|
||||
if (sscanf(rowdata, "%d", &x) != 1)
|
||||
ast_log(LOG_WARNING, "Failed to read message count!\n");
|
||||
SQLFreeHandle (SQL_HANDLE_STMT, stmt);
|
||||
} else
|
||||
@@ -920,7 +920,7 @@ static int message_exists(char *dir, int msgnum)
|
||||
SQLFreeHandle (SQL_HANDLE_STMT, stmt);
|
||||
goto yuck;
|
||||
}
|
||||
if (sscanf(rowdata, "%i", &x) != 1)
|
||||
if (sscanf(rowdata, "%d", &x) != 1)
|
||||
ast_log(LOG_WARNING, "Failed to read message count!\n");
|
||||
SQLFreeHandle (SQL_HANDLE_STMT, stmt);
|
||||
} else
|
||||
@@ -4072,7 +4072,7 @@ static int vm_newuser(struct ast_channel *chan, struct ast_vm_user *vmu, struct
|
||||
vm_change_password(vmu,newpassword);
|
||||
else
|
||||
vm_change_password_shell(vmu,newpassword);
|
||||
ast_log(LOG_DEBUG,"User %s set password to %s of length %i\n",vms->username,newpassword,(int)strlen(newpassword));
|
||||
ast_log(LOG_DEBUG,"User %s set password to %s of length %d\n",vms->username,newpassword,(int)strlen(newpassword));
|
||||
cmd = ast_play_and_wait(chan,"vm-passchanged");
|
||||
|
||||
/* If forcename is set, have the user record their name */
|
||||
@@ -4174,7 +4174,7 @@ static int vm_options(struct ast_channel *chan, struct ast_vm_user *vmu, struct
|
||||
vm_change_password(vmu,newpassword);
|
||||
else
|
||||
vm_change_password_shell(vmu,newpassword);
|
||||
ast_log(LOG_DEBUG,"User %s set password to %s of length %i\n",vms->username,newpassword,(int)strlen(newpassword));
|
||||
ast_log(LOG_DEBUG,"User %s set password to %s of length %d\n",vms->username,newpassword,(int)strlen(newpassword));
|
||||
cmd = ast_play_and_wait(chan,"vm-passchanged");
|
||||
break;
|
||||
case '*':
|
||||
|
Reference in New Issue
Block a user