mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
Merge pull request #1430 from spth/master
Since the string from strerror should never be modified, use const.
This commit is contained in:
commit
53a833d647
@ -58,7 +58,7 @@ scripts_init(void)
|
||||
errno = 0;
|
||||
int res = g_mkdir_with_parents(scriptsdir, S_IRWXU);
|
||||
if (res == -1) {
|
||||
char* errmsg = strerror(errno);
|
||||
const char* errmsg = strerror(errno);
|
||||
if (errmsg) {
|
||||
log_error("Error creating directory: %s, %s", scriptsdir, errmsg);
|
||||
} else {
|
||||
|
@ -60,7 +60,7 @@ _get_db_filename(ProfAccount* account)
|
||||
|
||||
int res = g_mkdir_with_parents(database_dir, S_IRWXU);
|
||||
if (res == -1) {
|
||||
char* errmsg = strerror(errno);
|
||||
const char* errmsg = strerror(errno);
|
||||
if (errmsg) {
|
||||
log_error("DATABASE: error creating directory: %s, %s", database_dir, errmsg);
|
||||
} else {
|
||||
|
@ -240,7 +240,7 @@ omemo_on_connect(ProfAccount* account)
|
||||
errno = 0;
|
||||
int res = g_mkdir_with_parents(omemo_dir, S_IRWXU);
|
||||
if (res == -1) {
|
||||
char* errmsg = strerror(errno);
|
||||
const char* errmsg = strerror(errno);
|
||||
if (errmsg) {
|
||||
log_error("OMEMO: error creating directory: %s, %s", omemo_dir, errmsg);
|
||||
} else {
|
||||
|
@ -167,7 +167,7 @@ p_gpg_on_connect(const char* const barejid)
|
||||
errno = 0;
|
||||
int res = g_mkdir_with_parents(pubsfile, S_IRWXU);
|
||||
if (res == -1) {
|
||||
char* errmsg = strerror(errno);
|
||||
const char* errmsg = strerror(errno);
|
||||
if (errmsg) {
|
||||
log_error("Error creating directory: %s, %s", pubsfile, errmsg);
|
||||
} else {
|
||||
|
@ -172,7 +172,7 @@ inp_readline(void)
|
||||
pthread_mutex_lock(&lock);
|
||||
if (r < 0) {
|
||||
if (errno != EINTR) {
|
||||
char* err_msg = strerror(errno);
|
||||
const char* err_msg = strerror(errno);
|
||||
log_error("Readline failed: %s", err_msg);
|
||||
}
|
||||
return NULL;
|
||||
|
@ -229,7 +229,7 @@ _avatar_request_item_result_handler(xmpp_stanza_t* const stanza, void* const use
|
||||
errno = 0;
|
||||
int res = g_mkdir_with_parents(filename->str, S_IRWXU);
|
||||
if (res == -1) {
|
||||
char* errmsg = strerror(errno);
|
||||
const char* errmsg = strerror(errno);
|
||||
if (errmsg) {
|
||||
log_error("Avatar: error creating directory: %s, %s", filename->str, errmsg);
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user