~ubuntu-branches/debian/stretch/alpine/stretch

« back to all changes in this revision

Viewing changes to alpine/dispfilt.c

  • Committer: Bazaar Package Importer
  • Author(s): Asheesh Laroia
  • Date: 2008-09-23 12:17:56 UTC
  • mfrom: (2.1.8 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080923121756-6u4x8bwq89qlzt32
Tags: 2.00+dfsg-2
Update to package description: note that Alpine is no longer in
alpha. (Closes: #499640)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#if !defined(lint) && !defined(DOS)
2
 
static char rcsid[] = "$Id: dispfilt.c 745 2007-10-11 18:03:32Z hubert@u.washington.edu $";
 
2
static char rcsid[] = "$Id: dispfilt.c 971 2008-03-18 17:24:31Z hubert@u.washington.edu $";
3
3
#endif
4
4
 
5
5
/*
6
6
 * ========================================================================
7
 
 * Copyright 2006-2007 University of Washington
 
7
 * Copyright 2006-2008 University of Washington
8
8
 *
9
9
 * Licensed under the Apache License, Version 2.0 (the "License");
10
10
 * you may not use this file except in compliance with the License.
28
28
#include "../pith/filter.h"
29
29
#include "../pith/store.h"
30
30
#include "../pith/addrstring.h"
31
 
#include "../pith/rfc2231.h"
 
31
#include "../pith/mimedesc.h"
32
32
#include "../pith/list.h"
33
33
#include "../pith/detach.h"
34
34
 
435
435
 
436
436
            if(p){
437
437
                *p = '\0';                      /* tie off user charset */
438
 
                if((p = rfc2231_get_param(body->parameter,"charset",NULL,NULL)) != NULL){
 
438
                if((p = parameter_val(body->parameter,"charset")) != NULL){
439
439
                    passed = !strucmp(test + 9, p);
440
440
                    fs_give((void **) &p);
441
441
                }