diff options
author | wiz <wiz> | 2002-11-03 21:31:24 +0000 |
---|---|---|
committer | wiz <wiz> | 2002-11-03 21:31:24 +0000 |
commit | 17329c51096af11645d3c6ab27ae8c31658dd99f (patch) | |
tree | fe4cd60367c6b8f61cc6f9f9ed48ed3e0b0d934c /net/dctc/patches | |
parent | 406fb41613fb24b9f2f14d552d6dcc7bd2ed3823 (diff) | |
download | pkgsrc-17329c51096af11645d3c6ab27ae8c31658dd99f.tar.gz |
Update to 0.83.7:
Fixed a compilation problem with Berkeley DB4, updated the man page, and
added the ability to start a program when a GDL ends. Downloading the
hublist no longer hangs the GUI, automatic generation of autoscan patterns
was added, and a problem with missing translation files in the RPM was
fixed.
Diffstat (limited to 'net/dctc/patches')
-rw-r--r-- | net/dctc/patches/patch-af | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/net/dctc/patches/patch-af b/net/dctc/patches/patch-af new file mode 100644 index 00000000000..29d94abc85d --- /dev/null +++ b/net/dctc/patches/patch-af @@ -0,0 +1,16 @@ +$NetBSD: patch-af,v 1.4 2002/11/03 21:31:24 wiz Exp $ + +--- src/userinfo.c.orig Wed Oct 30 16:49:57 2002 ++++ src/userinfo.c +@@ -99,10 +99,10 @@ void uinfo_update_user_info(char *nickna + + if(idx!=-1) + { +- printf("doing: %d\n",idx); + /* 1) the entry already exists, just update it */ + /* 2) the entry does not exist but there is free space to add it */ + LMP_UINFO *udp=&(((LMP_UINFO*)(local_dctc_user_info_lmp->mapped_addr))[idx]); ++ printf("doing: %d\n",idx); + udp->entry_is_busy=1; /* we set it to 1 because it can be an add or an update */ + strncpy_max(udp->nickname,nickname,UINFO_NICK_SIZE); + sscanf(usize,"%lld",&(udp->share_size)); |