diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2006-05-03 19:58:41 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2006-05-03 19:58:41 +0000 |
commit | 59792c48bd052fc79212f935272c7bdebfaed9d8 (patch) | |
tree | 470b15a33dd3a0a0c7b086de36b8d63fda8e0dd2 | |
parent | 761ebf4c36232f15b6102a31c3bacbb8d3af8bbf (diff) |
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); |