/[mailutils]/mailutils/mail/file.c
ViewVC logotype

Diff of /mailutils/mail/file.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.11 by gray, Fri Sep 27 13:24:10 2002 UTC revision 1.12 by polak, Mon Dec 23 22:01:34 2002 UTC
# Line 1  Line 1 
1  /* GNU mailutils - a suite of utilities for electronic mail  /* GNU Mailutils -- a suite of utilities for electronic mail
2     Copyright (C) 1999, 2001 Free Software Foundation, Inc.     Copyright (C) 1999, 2001, 2002 Free Software Foundation, Inc.
3    
4     This program is free software; you can redistribute it and/or modify     GNU Mailutils is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2, or (at your option)     the Free Software Foundation; either version 2, or (at your option)
7     any later version.     any later version.
8    
9     This program is distributed in the hope that it will be useful,     GNU Mailutils is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.     GNU General Public License for more details.
13    
14     You should have received a copy of the GNU General Public License     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software     along with GNU Mailutils; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
17    
18  #include "mail.h"  #include "mail.h"
# Line 36  mail_expand_name (const char *name) Line 36  mail_expand_name (const char *name)
36      {      {
37      case '#':      case '#':
38        if (!prev_name)        if (!prev_name)
39          util_error ("No previous file");          util_error (_("No previous file"));
40        else        else
41          name = xstrdup (prev_name);          name = xstrdup (prev_name);
42        break;        break;
# Line 44  mail_expand_name (const char *name) Line 44  mail_expand_name (const char *name)
44      case '&':      case '&':
45        name = getenv ("MBOX");        name = getenv ("MBOX");
46        if (!name)        if (!name)
47          util_error ("MBOX environment variable not set");          util_error (_("MBOX environment variable not set"));
48        else        else
49          name = xstrdup (name);          name = xstrdup (name);
50        break;        break;
# Line 87  mail_file (int argc, char **argv) Line 87  mail_file (int argc, char **argv)
87            || mailbox_open (newbox, MU_STREAM_RDWR) != 0)            || mailbox_open (newbox, MU_STREAM_RDWR) != 0)
88          {          {
89            mailbox_destroy (&newbox);            mailbox_destroy (&newbox);
90            util_error("can't open mailbox %s: %s", name, mu_errstring (errno));            util_error(_("can't open mailbox %s: %s"), name, mu_errstring (errno));
91            free (name);            free (name);
92            return 1;            return 1;
93          }          }
# Line 121  mail_file (int argc, char **argv) Line 121  mail_file (int argc, char **argv)
121      }      }
122    else    else
123      {      {
124        util_error("%s takes only one arg", argv[0]);        util_error(_("%s takes only one arg"), argv[0]);
125      }      }
126    return 1;    return 1;
127  }  }

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26