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 |
---|
17 | static char *rcsid__c = "$Id: auth_dum.c,v 1.5 1999-02-08 14:47:08 danw Exp $"; |
---|
18 | #endif /* lint */ |
---|
19 | |
---|
20 | get_authenticator (service_id, checksum, authp, authl, result) |
---|
21 | char *service_id; |
---|
22 | int checksum; |
---|
23 | char **authp; |
---|
24 | int *authl; |
---|
25 | int *result; |
---|
26 | { |
---|
27 | *authl = 0; |
---|
28 | *authp = ""; |
---|
29 | *result = 0; |
---|
30 | return; |
---|
31 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.