Skip to content

Commit

Permalink
Merge pull request #6 from jcbf/jcbf-version
Browse files Browse the repository at this point in the history
 *  Bumped version
  • Loading branch information
jcbf committed Mar 15, 2016
2 parents ac8edce + a64b2bc commit 10dbcef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion smf-spf.c
Expand Up @@ -55,6 +55,7 @@
#define ADD_HEADER 1
#define QUARANTINE 0
#define DAEMONIZE 1
#define VERSION "2.0.2b"

#define MAXLINE 258
#define HASH_POWER 16
Expand Down Expand Up @@ -972,7 +973,7 @@ int main(int argc, char **argv) {
if (conf.spf_ttl && !cache_init()) syslog(LOG_ERR, "[ERROR] cache engine init failed");
ret = smfi_main();
if (ret != MI_SUCCESS) syslog(LOG_ERR, "[ERROR] terminated due to a fatal error");
else syslog(LOG_NOTICE, "stopping smf-spf 2.0.2 listening on %s", conf.sendmail_socket);
else syslog(LOG_NOTICE, "stopping smf-spf %s listening on %s", VERSION, conf.sendmail_socket);
if (cache) cache_destroy();
pthread_mutex_destroy(&cache_mutex);
done:
Expand Down

0 comments on commit 10dbcef

Please sign in to comment.