You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Garrett Rooney <ro...@electricjellyfish.net> on 2005/08/14 20:02:28 UTC

[PATCH] mod_smtpd function naming

I noticed that mod_smtpd seems to go to some lengths to avoid messing up 
the global namespace, prefixing globally visible function names with 
smtpd_ and so forth, but there seems to be one case where this isn't 
done, process_smtp_connection_internal.  This patch renames it to 
smtpd_process_connection_internal.

-garrett

* smtp.h
   (process_smtp_connection_internal): rename to...
   (smtpd_process_connection_internal): this.

* smtp_protocol.c
   (process_smtp_connection_internal): rename to...
   (smtpd_process_connection_internal): this.

* smtp_core.c
   (process_smtp_connection): update call to
    smtpd_process_connection_internal.