diff options
-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); |