=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/Attic/sftp-glob.h,v retrieving revision 1.5 retrieving revision 1.5.2.2 diff -u -r1.5 -r1.5.2.2 --- 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/05/17 00:03:24 1.5.2.2 @@ -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.2 2002/05/17 00:03:24 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,13 @@ /* Remote sftp filename globbing */ +#ifndef _SFTP_GLOB_H +#define _SFTP_GLOB_H + +#include "sftp-client.h" + int -remote_glob(int, int, const char *, int, int (*)(const char *, int), glob_t *); +remote_glob(struct sftp_conn *, const char *, int, + int (*)(const char *, int), glob_t *); + +#endif