diff options
Diffstat (limited to 'src/cmd/upas/vf')
-rw-r--r-- | src/cmd/upas/vf/unvf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/upas/vf/unvf.c b/src/cmd/upas/vf/unvf.c index 92af6bfb..aecbca62 100644 --- a/src/cmd/upas/vf/unvf.c +++ b/src/cmd/upas/vf/unvf.c @@ -24,7 +24,7 @@ main(void) while((p = Brdstr(&b, '\n', 1)) != nil){ if(p[0] == 0) break; - if(strncmp(p, "Content-Transfer-Encoding: ", 27) == 0) + if(cistrncmp(p, "Content-Transfer-Encoding: ", 27) == 0) encoding = strdup(p+27); free(p); } |