Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • otr.c

    r820a2a7 r6b13103  
    3636  You should have received a copy of the GNU General Public License with
    3737  the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL;
    38   if not, write to the Free Software Foundation, Inc., 59 Temple Place,
    39   Suite 330, Boston, MA  02111-1307  USA
     38  if not, write to the Free Software Foundation, Inc., 51 Franklin St.,
     39  Fifth Floor, Boston, MA  02110-1301  USA
    4040*/
    4141
     
    14701470int hexval(char a)
    14711471{
    1472         int x=tolower(a);
     1472        int x=g_ascii_tolower(a);
    14731473       
    14741474        if(x>='a' && x<='f')
     
    15571557        for(i=0; args[i]; i++) {
    15581558                for(j=0; args[i][j]; j++) {
    1559                         char c = toupper(args[i][j]);
     1559                        char c = g_ascii_toupper(args[i][j]);
    15601560                       
    15611561                        if(n>=40) {
     
    16211621        for(i=0; args[i]; i++) {
    16221622                for(j=0; args[i][j]; j++) {
    1623                         char c = toupper(args[i][j]);
     1623                        char c = g_ascii_toupper(args[i][j]);
    16241624                       
    16251625                        if(n>=40) {
Note: See TracChangeset for help on using the changeset viewer.