mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 19:28:53 +00:00
convert a few more uses of AST_CONFIG_MAX_PATH to use PATH_MAX
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@33421 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -240,7 +240,7 @@ static void reload_module(void)
|
||||
|
||||
static void file_ok_sel(GtkWidget *w, GtkFileSelection *fs)
|
||||
{
|
||||
char tmp[AST_CONFIG_MAX_PATH];
|
||||
char tmp[PATH_MAX];
|
||||
char *module = gtk_file_selection_get_filename(fs);
|
||||
char buf[256];
|
||||
snprintf(tmp, sizeof(tmp), "%s/", ast_config_AST_MODULE_DIR);
|
||||
@@ -260,7 +260,7 @@ static void file_ok_sel(GtkWidget *w, GtkFileSelection *fs)
|
||||
|
||||
static void add_module(void)
|
||||
{
|
||||
char tmp[AST_CONFIG_MAX_PATH];
|
||||
char tmp[PATH_MAX];
|
||||
GtkWidget *filew;
|
||||
snprintf(tmp, sizeof(tmp), "%s/*.so", ast_config_AST_MODULE_DIR);
|
||||
filew = gtk_file_selection_new("Load Module");
|
||||
|
@@ -18,12 +18,12 @@
|
||||
#include "asterisk/module.h"
|
||||
#include "asterisk/ael_structs.h"
|
||||
|
||||
#define AST_CONFIG_MAX_PATH 255
|
||||
#define PATH_MAX 255
|
||||
|
||||
int conts=0, extens=0, priors=0;
|
||||
char last_exten[18000];
|
||||
char ast_config_AST_CONFIG_DIR[AST_CONFIG_MAX_PATH];
|
||||
char ast_config_AST_VAR_DIR[AST_CONFIG_MAX_PATH];
|
||||
char ast_config_AST_CONFIG_DIR[PATH_MAX];
|
||||
char ast_config_AST_VAR_DIR[PATH_MAX];
|
||||
|
||||
void ast_add_profile(void);
|
||||
void ast_cli_register_multiple(void);
|
||||
|
Reference in New Issue
Block a user