~ubuntu-branches/ubuntu/trusty/postfix/trusty-updates

« back to all changes in this revision

Viewing changes to src/smtpd/smtpd_token.c

Tags: upstream-2.3.1
ImportĀ upstreamĀ versionĀ 2.3.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
#include <string.h>
52
52
#include <unistd.h>
53
53
 
 
54
#ifdef STRCASECMP_IN_STRINGS_H
 
55
#include <strings.h>
 
56
#endif
 
57
 
54
58
/* Utility library. */
55
59
 
56
60
#include <mymalloc.h>
222
226
            vstream_printf("Token value: %s\n", tok_argv[i].strval);
223
227
        }
224
228
    }
 
229
    vstring_free(vp);
225
230
    exit(0);
226
231
}
227
232