- removed debugging printf()

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17721 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Oliver Tappe 2006-06-04 16:03:54 +00:00
parent e80a4974da
commit e6ae8c76ed
1 changed files with 7 additions and 7 deletions

View File

@ -359,12 +359,12 @@ _EXPORT int sysctl (int *name, uint namelen, void *oldp, size_t *oldlenp,
*/
static char * stack_driver_path(void) {
char * path;
char * path;
// user-defined stack driver path?
path = getenv("NET_STACK_DRIVER_PATH");
if (!path)
path = NET_STACK_DRIVER_PATH;
printf("net-stack-driver-path = %s\n", path);
return path;
// user-defined stack driver path?
path = getenv("NET_STACK_DRIVER_PATH");
if (!path)
path = NET_STACK_DRIVER_PATH;
return path;
}