[srvx-commits] CVS: services/src proto-bahamut.c,1.33,1.34
Brought to you by:
entrope
|
From: Entrope <en...@us...> - 2003-01-16 23:06:52
|
Update of /cvsroot/srvx/services/src
In directory sc8-pr-cvs1:/tmp/cvs-serv27727/src
Modified Files:
proto-bahamut.c
Log Message:
fix thinko (line ordering error)
Index: proto-bahamut.c
===================================================================
RCS file: /cvsroot/srvx/services/src/proto-bahamut.c,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -r1.33 -r1.34
*** proto-bahamut.c 10 Jan 2003 03:36:26 -0000 1.33
--- proto-bahamut.c 16 Jan 2003 23:06:49 -0000 1.34
***************
*** 730,735 ****
/* new nick from a server */
char id[8];
- if (argc < 10) return 0;
unsigned long stamp;
stamp = strtoul(argv[8], NULL, 0);
if (stamp) inttobase64(id, stamp, IDLEN);
--- 730,735 ----
/* new nick from a server */
char id[8];
unsigned long stamp;
+ if (argc < 10) return 0;
stamp = strtoul(argv[8], NULL, 0);
if (stamp) inttobase64(id, stamp, IDLEN);
|