source: trunk/athena/bin/discuss/libds/auth_dum.c @ 12459

Revision 12459, 728 bytes checked in by danw, 26 years ago (diff)
comment out text after #else and #endif
Line 
1/*
2 *
3 *      Copyright (C) 1988, 1989 by the Massachusetts Institute of Technology
4 *      Developed by the MIT Student Information Processing Board (SIPB).
5 *      For copying information, see the file mit-copyright.h in this release.
6 *
7 */
8/*
9 *
10 *      $Id: auth_dum.c,v 1.5 1999-02-08 14:47:08 danw Exp $
11 *
12 * auth_dum () -- Authentication procedure for non-kerberos sites.
13 *                Just returns an empty string.
14 *
15 */
16#ifndef lint
17static char *rcsid__c = "$Id: auth_dum.c,v 1.5 1999-02-08 14:47:08 danw Exp $";
18#endif /* lint */
19
20get_authenticator (service_id, checksum, authp, authl, result)
21char *service_id;
22int checksum;
23char **authp;
24int *authl;
25int *result;
26{
27     *authl = 0;
28     *authp = "";
29     *result = 0;
30     return;
31}
Note: See TracBrowser for help on using the repository browser.