diff options
author | Eduardo Chappa <chappa@washington.edu> | 2016-03-25 10:29:48 -0600 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2016-03-25 10:29:48 -0600 |
commit | 00ea1cca3ca866fee06eb66d13d330cab9390234 (patch) | |
tree | 3178cd4ecd6035963a95ccebd34e4e51a65a7c29 | |
parent | 69d8a88987413f6eed782fb095633b68cf67bd49 (diff) | |
download | alpine-00ea1cca3ca866fee06eb66d13d330cab9390234.tar.xz |
* Small fix to SETUP DIRECTORY SERVERS screen, where Alpine would print
only a small portion of the subtitle (e.g. "Directo" instead of
"Directory Server on some.server.com".)
-rw-r--r-- | alpine/ldapconf.c | 32 | ||||
-rw-r--r-- | pith/pine.hlp | 2 |
2 files changed, 17 insertions, 17 deletions
diff --git a/alpine/ldapconf.c b/alpine/ldapconf.c index ae88f3a1..0e5fa274 100644 --- a/alpine/ldapconf.c +++ b/alpine/ldapconf.c @@ -622,6 +622,7 @@ dir_init_display(struct pine *ps, CONF_S **ctmp, char **servers, int i; char *serv; char *subtitle; + size_t sizeofsub; LDAP_SERV_S *info; if(first_line) @@ -633,22 +634,21 @@ dir_init_display(struct pine *ps, CONF_S **ctmp, char **servers, serv = (info && info->nick && *info->nick) ? cpystr(info->nick) : (info && info->serv && *info->serv) ? cpystr(info->serv) : cpystr(_("Bad Server Config, Delete this")); - subtitle = (char *)fs_get((((info && info->serv && *info->serv) - ? strlen(info->serv) - : 3) + - strlen(_(dserv)) + 15) * - sizeof(char)); + sizeofsub = (((info && info->serv && *info->serv) + ? strlen(info->serv) + : 3) + strlen(_(dserv)) + 15) * sizeof(char); + subtitle = (char *)fs_get(sizeofsub); if(info && info->port >= 0) - snprintf(subtitle, sizeof(subtitle), "%s%s:%d", + snprintf(subtitle, sizeofsub, "%s%s:%d", _(dserv), (info && info->serv && *info->serv) ? info->serv : "<?>", info->port); else - snprintf(subtitle, sizeof(subtitle), "%s%s", + snprintf(subtitle, sizeofsub, "%s%s", _(dserv), (info && info->serv && *info->serv) ? info->serv : "<?>"); - subtitle[sizeof(subtitle)-1] = '\0'; + subtitle[sizeofsub-1] = '\0'; add_ldap_server_to_display(ps, ctmp, serv, subtitle, var, i, &dir_conf_km, h_direct_config, @@ -803,6 +803,7 @@ dir_config_add(struct pine *ps, CONF_S **cl) if(info && info->serv && *info->serv){ char *subtitle; + size_t sizeofsub; int i, cnt = 0; char **new_list; CONF_S *cp; @@ -837,22 +838,21 @@ dir_config_add(struct pine *ps, CONF_S **cl) set_variable_list(V_LDAP_SERVERS, new_list, FALSE, ew); free_list_array(&new_list); set_current_val((*cl)->var, TRUE, FALSE); - subtitle = (char *)fs_get((((info && info->serv && *info->serv) - ? strlen(info->serv) - : 3) + - strlen(_(dserv)) + 15) * - sizeof(char)); + sizeofsub = (((info && info->serv && *info->serv) + ? strlen(info->serv) + : 3) + strlen(_(dserv)) + 15) * sizeof(char); + subtitle = (char *)fs_get(sizeofsub); if(info && info->port >= 0) - snprintf(subtitle, sizeof(subtitle), "%s%s:%d", + snprintf(subtitle, sizeofsub, "%s%s:%d", _(dserv), (info && info->serv && *info->serv) ? info->serv : "<?>", info->port); else - snprintf(subtitle, sizeof(subtitle), "%s%s", + snprintf(subtitle, sizeofsub, "%s%s", _(dserv), (info && info->serv && *info->serv) ? info->serv : "<?>"); - subtitle[sizeof(subtitle)-1] = '\0'; + subtitle[sizeofsub-1] = '\0'; if(cnt < 2){ /* first one */ struct variable *var; diff --git a/pith/pine.hlp b/pith/pine.hlp index ce2beef1..bbe2e294 100644 --- a/pith/pine.hlp +++ b/pith/pine.hlp @@ -347,7 +347,7 @@ Bugs that have been addressed include: <LI> HTML messages that contain UTF-8 may wrap at the wrong position, making Alpine not display the correct character at the position - that wrapping is done. + that wrapping is done. Reported by Wang Kang. <LI> Pico: Searching for a string that is too long causes Pico to crash in the next search. |