[w3m-dev 03822] Re: etc.c: treatment for "%7E" is added to expandName()

* etc.c (expandName): rewrite with strncasecmp
From: Fumitoshi UKAI  <ukai@debian.or.jp>
This commit is contained in:
Fumitoshi UKAI
2003-03-13 15:40:40 +00:00
parent bb009f2d9a
commit 9f431670a8
2 changed files with 10 additions and 5 deletions

8
etc.c
View File

@@ -1,4 +1,4 @@
/* $Id: etc.c,v 1.68 2003/03/13 15:15:47 inu Exp $ */
/* $Id: etc.c,v 1.69 2003/03/13 15:40:47 ukai Exp $ */
#include "fm.h"
#include <pwd.h>
#include "myctype.h"
@@ -1552,9 +1552,9 @@ expandName(char *name)
return NULL;
p = name;
if (*p == '/') {
if ( (*(p + 1) == '~' && IS_ALPHA(*(p + 2)) )
|| ( strncmp( p+1, "%7", 2 ) == 0 && tolower( *(p+3) ) == 'e' )
&& personal_document_root) {
if (((*(p + 1) == '~' && IS_ALPHA(*(p + 2)))
|| (strncasecmp(p + 1, "%7e", 3) == 0))
&& personal_document_root) {
char *q;
p += 2;
q = strchr(p, '/');