Skip to content

Commit

Permalink
Namespace another module
Browse files Browse the repository at this point in the history
  • Loading branch information
msantos committed Apr 5, 2012
1 parent 0fb6e5d commit ef0cb79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/spood.erl
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ start(Options) ->


spood_spoof:start_link(Dev, {Smac,Saddr}, {Dmac, Daddr}), spood_spoof:start_link(Dev, {Smac,Saddr}, {Dmac, Daddr}),
spood_dns:start_link(), spood_dns:start_link(),
spawn(snuff, start_link, [Dev, Daddr]). spawn(spood_snuff, start_link, [Dev, Daddr]).


nameserver() -> nameserver() ->
{ok, PL} = inet_parse:resolv( {ok, PL} = inet_parse:resolv(
Expand Down
2 changes: 1 addition & 1 deletion src/snuff.erl → src/spood_snuff.erl
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
%% LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN %% LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
%% ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE %% ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
%% POSSIBILITY OF SUCH DAMAGE. %% POSSIBILITY OF SUCH DAMAGE.
-module(snuff). -module(spood_snuff).
-behaviour(gen_server). -behaviour(gen_server).


-define(SERVER, ?MODULE). -define(SERVER, ?MODULE).
Expand Down

0 comments on commit ef0cb79

Please sign in to comment.