Changeset 4667:ad6a4b66f862

Show
Ignore:
Timestamp:
2006-06-08 04:56:05 (3 years ago)
Author:
Thomas Roessler <roessler@…>
Branch:
HEAD
Message:

Clean up ReleaseDate? mess; include ReleaseDate? in User-Agent
header.

Files:
5 modified

Legend:

Unmodified
Added
Removed
  • commands.c

    r4343 r4667  
    5454#include <utime.h> 
    5555 
    56 extern char *ReleaseDate; 
    5756 
    5857/* The folder the user last saved to.  Used by ci_save_message() */ 
  • curs_main.c

    r4610 r4667  
    115115#define UNREAD(h) mutt_thread_contains_unread (Context, h) 
    116116 
    117 extern const char *ReleaseDate; 
    118117extern size_t UngetCount; 
    119118 
  • globals.h

    r4622 r4667  
    140140WHERE char *LastFolder; 
    141141 
     142 
     143WHERE const char *ReleaseDate; 
     144 
    142145WHERE HASH *Groups; 
    143146 
     
    161164WHERE SPAM_LIST *SpamList INITVAL(0); 
    162165WHERE RX_LIST *NoSpamList INITVAL(0); 
     166 
    163167 
    164168/* bit vector for boolean variables */ 
     
    272276#include "sort.h" 
    273277#include "mutt_crypt.h" 
     278#include "reldate.h" 
    274279#endif /* MAIN_C */ 
  • muttlib.c

    r4640 r4667  
    2828#include "mx.h" 
    2929#include "url.h" 
    30  
    31 #include "reldate.h" 
    3230 
    3331#ifdef USE_IMAP 
  • sendlib.c

    r4640 r4667  
    16501650  { 
    16511651    /* Add a vanity header */ 
    1652     fprintf (fp, "User-Agent: Mutt/%s\n", MUTT_VERSION); 
     1652    fprintf (fp, "User-Agent: Mutt/%s-%s\n", MUTT_VERSION, ReleaseDate); 
    16531653  } 
    16541654