~ubuntu-branches/debian/squeeze/erlang/squeeze

« back to all changes in this revision

Viewing changes to erts/epmd/src/epmd_srv.c

  • Committer: Bazaar Package Importer
  • Author(s): Sergei Golovan
  • Date: 2009-02-15 16:42:52 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20090215164252-dxpjjuq108nz4noa
Tags: 1:12.b.5-dfsg-2
Upload to unstable after lenny is released.

Show diffs side-by-side

added added

removed removed

Lines of Context:
790
790
 
791
791
  if (connections == NULL)
792
792
    {
793
 
      dbg_printf(g,0,"empd: Insufficient memory");
 
793
      dbg_printf(g,0,"epmd: Insufficient memory");
794
794
#ifdef DONT_USE_MAIN
795
795
      free(g->argv);
796
796
#endif
842
842
      s->buf = (char *)malloc(INBUF_SIZE);
843
843
 
844
844
      if (s->buf == NULL) {
845
 
        dbg_printf(g,0,"empd: Insufficient memory");
 
845
        dbg_printf(g,0,"epmd: Insufficient memory");
846
846
        close(fd);
847
847
        return EPMD_FALSE;
848
848
      }
1085
1085
        {
1086
1086
          if ((node = (Node *)malloc(sizeof(Node))) == NULL)
1087
1087
            {
1088
 
              dbg_printf(g,0,"empd: Insufficient memory");
 
1088
              dbg_printf(g,0,"epmd: Insufficient memory");
1089
1089
              exit(1);
1090
1090
            }
1091
1091