Changeset 802 for branches/ithildin-1.1


Ignore:
Timestamp:
03/22/07 04:13:51 (5 years ago)
Author:
wd
Message:
  • Fix a buffer bug in names (the wrong way!).
  • Let's just call this release for chrissakes.
Location:
branches/ithildin-1.1
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/ithildin-1.1/Makefile.in

    r717 r802  
    118118        $$cfgline 
    119119 
    120 DISTFILES = .svn COPYING DEVELOPERS Makefile.in README TODO autoconf    \ 
     120DISTFILES = .svn COPYING DEVELOPERS Makefile.in README autoconf \ 
    121121            configure doc include source tools 
    122122MDISTFILES = modules/.svn modules/Makefile.in 
     
    129129         rm -rf dist ;                                                  \ 
    130130         mkdir -p dist/$$repover ;                                      \ 
    131          echo ">>> building release for base system in $(VERSION).tar.gz";\ 
     131         echo ">>> building release in $(VERSION).tar.gz";              \ 
     132         mkdir dist/$$repover/$(VERSION) ;                              \ 
     133         cp -R $(DISTFILES) dist/$$repover/$(VERSION) ;                 \ 
     134         cp -R modules dist/$$repover/$(VERSION)/modules ;              \ 
     135         (cd dist/$$repover && tar -zcf $(VERSION).tar.gz $(VERSION)) ; \        
     136         rm -rf dist/$$repover/$(VERSION) ;                             \ 
     137         echo ">>> building release for base system in $(VERSION)-base.tar.gz";\ 
    132138         mkdir dist/$$repover/$(VERSION) ;                              \ 
    133139         cp -R $(DISTFILES) dist/$$repover/$(VERSION) ;                 \ 
    134140         mkdir -p dist/$$repover/$(VERSION)/modules ;                   \ 
    135141         cp -R $(MDISTFILES) dist/$$repover/$(VERSION)/modules ;        \ 
    136          (cd dist/$$repover && tar -zcf $(VERSION).tar.gz $(VERSION)) ; \ 
     142         (cd dist/$$repover && tar -zcf $(VERSION)-base.tar.gz $(VERSION)) ;\ 
    137143         rm -rf dist/$$repover/$(VERSION) ;                             \ 
    138144         (cd modules && $(MAKE) REPOVER=$$repover release) ;            \ 
  • branches/ithildin-1.1/modules/ircd/commands/names.c

    r579 r802  
    6969void do_names(client_t *cli, channel_t *chan) { 
    7070    struct chanlink *clp; 
    71 #define NAMEBUFLEN 320 
    72     char buf[NAMEBUFLEN]; 
     71#define NAMEBUFLEN 300 
     72    char buf[NAMEBUFLEN + 20]; 
    7373    int len = 0; 
    7474    int see = onchannel(cli, chan); 
  • branches/ithildin-1.1/modules/ircd/ircd.c

    r725 r802  
    1818IDSTRING(rcsid, "$Id$"); 
    1919 
    20 MODULE_REGISTER("1.0rc1"); 
     20MODULE_REGISTER("1.0r0"); 
    2121/* 
    2222@DEPENDENCIES@: dns ident 
Note: See TracChangeset for help on using the changeset viewer.