Skip to content

Commit 800da1e

Browse files
author
drscholl
committed
fixed setup.c to compile under win32
updated ChangeLog with recent CVS log entries.
1 parent cf11e1f commit 800da1e

File tree

5 files changed

+103
-4
lines changed

5 files changed

+103
-4
lines changed

ChangeLog

+97
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,100 @@
1+
2000-07-20 drscholl <[email protected]>
2+
3+
* login.c:
4+
clone checker and max connections should only be checked for user logins,
5+
not server logins.
6+
7+
* napster.txt:
8+
updated napster.txt on the 870 (add directory) command
9+
10+
* add_file.c, handler.c, search.c:
11+
fixed possible buffer overrun in add_directory()
12+
13+
fixed handle_connection() to avoid sending MSG_SERVER_USER_SHARING commands
14+
after every MSG_CLIENT_ADD_DIRECTORY command.
15+
16+
added the server from which the command came to the log() messages generated
17+
by remote_search() and remote_search_result()
18+
19+
2000-07-16 drscholl <[email protected]>
20+
21+
* config.c, login.c, main.c, opennap.h, sample.conf:
22+
added clone checking controlled by new `max_clones' config var.
23+
24+
2000-07-13 drscholl <[email protected]>
25+
26+
* browse.c:
27+
fixed bug in new_browse() where no results would be returned in
28+
max_browse_results was set to 0 (which should mean unlimited)
29+
30+
2000-07-08 drscholl <[email protected]>
31+
32+
* add_file.c, configure.in, opennap.h:
33+
fixed buffer overflow in add_directory() when the directory portion of the
34+
filename was >=255 chars
35+
36+
2000-07-06 drscholl <[email protected]>
37+
38+
* server_usage.c:
39+
added bytes in and bytes out to the server stats
40+
41+
2000-07-02 drscholl <[email protected]>
42+
43+
* README, opennap.h, privmsg.c:
44+
changed rehash numeric to 10117 to avoid conflict with old server ping
45+
numeric
46+
47+
added `rehash' to the list of operserv commands
48+
49+
* README, config.c, handler.c, opennap.h:
50+
added rehash (10116) command to cause a server to reload it config files
51+
52+
* README, add_file.c, server_connect.c:
53+
log message for bitrateToMask() said freqToMask
54+
55+
server_connect should check for missing host argument
56+
57+
2000-06-30 drscholl <[email protected]>
58+
59+
* muzzle.c:
60+
added missing return when attempting to unmuzzle a user that isnt muzzled
61+
62+
2000-06-29 drscholl <[email protected]>
63+
64+
* channel.c:
65+
channel_voice() did not check for permission to execute the command
66+
67+
* browse.c, channel.c, muzzle.c, serverlib.c:
68+
fixed compilation warnings about unused `len'
69+
70+
pop_user_server() had a bad log() message with the message tag value causing
71+
a segfault
72+
73+
muzzle() should ensure that db is not NULL before using it
74+
75+
2000-06-27 drscholl <[email protected]>
76+
77+
* whois.c:
78+
append_string() allocated extra space but didnt copy the data to append
79+
80+
* channel.c, join.c:
81+
bugfixes from panasync. join() was setting the wrong user to channel
82+
operator since chanUser was reused for sending a join message to all clients
83+
in the channel.
84+
85+
in channel_muzzle(), need to check for sender!=NULL when checking the user
86+
level permission
87+
88+
2000-06-26 drscholl <[email protected]>
89+
90+
* browse.c, channel.c, muzzle.c, whois.c:
91+
muzzled users should not be able to channel wallop
92+
93+
2000-06-24 drscholl <[email protected]>
94+
95+
* ChangeLog, NEWS, README:
96+
post 0.34 release commit
97+
198
2000-06-23 drscholl <[email protected]>
299

3100
* TODO, channel.c:

Makefile.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ distdir: $(DISTFILES)
285285
@for file in $(DISTFILES); do \
286286
d=$(srcdir); \
287287
if test -d $$d/$$file; then \
288-
cp -pr $$d/$$file $(distdir)/$$file; \
288+
cp -pr $$/$$file $(distdir)/$$file; \
289289
else \
290290
test -f $(distdir)/$$file \
291291
|| ln $$d/$$file $(distdir)/$$file 2> /dev/null \

README

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
opennap v0.34 (ALPHA)
1+
opennap v0.35 (ALPHA)
22
the open source (TM) napster server
33
===================================
4-
July 2, 2000
4+
July 23, 2000
55

66
http://opennap.sourceforge.net
77
IRC: #opennap on irc.openprojects.net and EFNet

configure

+1-1
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@ fi
705705

706706
PACKAGE=opennap
707707

708-
VERSION=0.34
708+
VERSION=0.35
709709

710710
if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
711711
{ echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; }

setup.c

+2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
#define MKDIR(a,b) mkdir(a)
2222
#define F_OK 00
2323
#define DIRSEP '\\'
24+
#define S_IRUSR _S_IREAD
25+
#define S_IWUSR _S_IWRITE
2426
#endif
2527

2628
/* opennap installation program */

0 commit comments

Comments
 (0)