[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GNUnet-SVN] r3713 - in GNUnet: . src/server src/util/os
From: |
grothoff |
Subject: |
[GNUnet-SVN] r3713 - in GNUnet: . src/server src/util/os |
Date: |
Sat, 11 Nov 2006 20:35:35 -0800 (PST) |
Author: grothoff
Date: 2006-11-11 20:35:33 -0800 (Sat, 11 Nov 2006)
New Revision: 3713
Modified:
GNUnet/src/server/tcpserver.c
GNUnet/src/util/os/dso.c
GNUnet/todo
Log:
excessive_logging
Modified: GNUnet/src/server/tcpserver.c
===================================================================
--- GNUnet/src/server/tcpserver.c 2006-11-12 04:23:10 UTC (rev 3712)
+++ GNUnet/src/server/tcpserver.c 2006-11-12 04:35:33 UTC (rev 3713)
@@ -186,7 +186,7 @@
int sendToClient(struct ClientHandle * handle,
const MESSAGE_HEADER * message) {
GE_LOG(ectx,
- GE_INFO | GE_USER | GE_BULK,
+ GE_DEBUG | GE_DEVELOPER | GE_REQUEST,
"%s: sending reply to client\n",
__FUNCTION__);
return select_write(selector,
Modified: GNUnet/src/util/os/dso.c
===================================================================
--- GNUnet/src/util/os/dso.c 2006-11-12 04:23:10 UTC (rev 3712)
+++ GNUnet/src/util/os/dso.c 2006-11-12 04:35:33 UTC (rev 3713)
@@ -62,13 +62,18 @@
old_dlsearchpath = STRDUP(opath);
path = os_get_installation_path(IPK_LIBDIR);
if (path != NULL) {
- cpath = MALLOC(strlen(path) + strlen(opath) + 4);
- strcpy(cpath, opath);
- strcat(cpath, ":");
- strcat(cpath, path);
- lt_dlsetsearchpath(cpath);
- FREE(path);
- FREE(cpath);
+ if (opath != NULL) {
+ cpath = MALLOC(strlen(path) + strlen(opath) + 4);
+ strcpy(cpath, opath);
+ strcat(cpath, ":");
+ strcat(cpath, path);
+ lt_dlsetsearchpath(cpath);
+ FREE(path);
+ FREE(cpath);
+ } else {
+ lt_dlsetsearchpath(path);
+ FREE(path);
+ }
}
}
Modified: GNUnet/todo
===================================================================
--- GNUnet/todo 2006-11-12 04:23:10 UTC (rev 3712)
+++ GNUnet/todo 2006-11-12 04:35:33 UTC (rev 3713)
@@ -27,6 +27,8 @@
+ fs/fsui
* gnunet-setup: [RCpre1]
+ ncurses wizard
+- insert of tar.gz results in filename INSIDE of TGZ being
+ possibly (?) used for the filename of the archive!
- update documentation [RCpre2]
- More testcases: [RCpre3]
* advertising
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [GNUnet-SVN] r3713 - in GNUnet: . src/server src/util/os,
grothoff <=