~ubuntu-dev/ubuntu/lucid/mutt/lucid-201002110857

« back to all changes in this revision

Viewing changes to mx.c

  • Committer: Bazaar Package Importer
  • Author(s): Bhavani Shankar
  • Date: 2009-06-07 17:30:03 UTC
  • mto: (16.2.1 experimental) (2.3.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: james.westby@ubuntu.com-20090607173003-rg37ui3h2bbv7wl0
Tags: upstream-1.5.19
ImportĀ upstreamĀ versionĀ 1.5.19

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 * Copyright (C) 1996-2002 Michael R. Elkins <me@mutt.org>
3
 
 * Copyright (C) 1999-2000 Thomas Roessler <roessler@does-not-exist.org>
 
3
 * Copyright (C) 1999-2003 Thomas Roessler <roessler@does-not-exist.org>
4
4
 * 
5
5
 *     This program is free software; you can redistribute it and/or modify
6
6
 *     it under the terms of the GNU General Public License as published by
271
271
  return 0;
272
272
}
273
273
 
274
 
void mx_unlink_empty (const char *path)
 
274
static void mx_unlink_empty (const char *path)
275
275
{
276
276
  int fd;
277
277
#ifndef USE_DOTLOCK
1207
1207
 
1208
1208
/* {maildir,mh}_open_new_message are in mh.c. */
1209
1209
 
1210
 
int mbox_open_new_message (MESSAGE *msg, CONTEXT *dest, HEADER *hdr)
 
1210
static int mbox_open_new_message (MESSAGE *msg, CONTEXT *dest, HEADER *hdr)
1211
1211
{
1212
1212
  msg->fp = dest->fp;
1213
1213
  return 0;
1214
1214
}
1215
1215
 
1216
1216
#ifdef USE_IMAP
1217
 
int imap_open_new_message (MESSAGE *msg, CONTEXT *dest, HEADER *hdr)
 
1217
static int imap_open_new_message (MESSAGE *msg, CONTEXT *dest, HEADER *hdr)
1218
1218
{
1219
1219
  char tmp[_POSIX_PATH_MAX];
1220
1220