=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/Attic/sftp-glob.h,v retrieving revision 1.5 retrieving revision 1.5.2.3 diff -u -r1.5 -r1.5.2.3 --- src/usr.bin/ssh/Attic/sftp-glob.h 2001/06/26 17:27:24 1.5 +++ src/usr.bin/ssh/Attic/sftp-glob.h 2002/10/11 14:53:07 1.5.2.3 @@ -1,7 +1,7 @@ -/* $OpenBSD: sftp-glob.h,v 1.5 2001/06/26 17:27:24 markus Exp $ */ +/* $OpenBSD: sftp-glob.h,v 1.5.2.3 2002/10/11 14:53:07 miod Exp $ */ /* - * Copyright (c) 2001 Damien Miller. All rights reserved. + * Copyright (c) 2001,2002 Damien Miller. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -26,5 +26,12 @@ /* Remote sftp filename globbing */ -int -remote_glob(int, int, const char *, int, int (*)(const char *, int), glob_t *); +#ifndef _SFTP_GLOB_H +#define _SFTP_GLOB_H + +#include "sftp-client.h" + +int remote_glob(struct sftp_conn *, const char *, int, + int (*)(const char *, int), glob_t *); + +#endif