diff options
author | 2006-05-03 19:58:40 +0000 | |
---|---|---|
committer | 2006-05-03 19:58:40 +0000 | |
commit | 78dc3f559f9695f5f4252225397a6ea2c9a2ad0b (patch) | |
tree | e928676d0f2cf44e19ec3325602371daa7d27413 | |
parent | checks that libraries are libaries and programs are programs. (needs cleanup) (diff) | |
download | wireguard-openbsd-78dc3f559f9695f5f4252225397a6ea2c9a2ad0b.tar.xz wireguard-openbsd-78dc3f559f9695f5f4252225397a6ea2c9a2ad0b.zip |
goodbye noisy debug.
-rw-r--r-- | libexec/ld.so/prebind/prebind.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libexec/ld.so/prebind/prebind.c b/libexec/ld.so/prebind/prebind.c index ca414e96217..c58e5297c9e 100644 --- a/libexec/ld.so/prebind/prebind.c +++ b/libexec/ld.so/prebind/prebind.c @@ -1,4 +1,4 @@ -/* $OpenBSD: prebind.c,v 1.3 2006/05/03 19:49:21 drahn Exp $ */ +/* $OpenBSD: prebind.c,v 1.4 2006/05/03 19:58:40 drahn Exp $ */ /* * Copyright (c) 2006 Dale Rahn <drahn@dalerahn.com> * @@ -143,10 +143,8 @@ load_file_or_dir(char *name) int ret; ret = lstat(name, &sb); - printf("ret\n"); if (ret != 0) return; - printf("file or dir mode %d\n", sb.st_mode & S_IFMT); switch(sb.st_mode & S_IFMT) { case S_IFREG: load_exe(name); |