diff options
author | Damien Miller <djm@mindrot.org> | 2003-11-17 11:18:23 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2003-11-17 11:18:23 +0100 |
commit | f58b58ced10c2e9ae899f63d4e915ec9723cf5a1 (patch) | |
tree | a40f405796853a41d0da48a47c82a72d3be818fe /uuencode.h | |
parent | - jmc@cvs.openbsd.org 2003/11/08 19:17:29 (diff) | |
download | openssh-f58b58ced10c2e9ae899f63d4e915ec9723cf5a1.tar.xz openssh-f58b58ced10c2e9ae899f63d4e915ec9723cf5a1.zip |
- jakob@cvs.openbsd.org 2003/11/10 16:23:41
[bufaux.c bufaux.h cipher.c cipher.h hostfile.c hostfile.h key.c]
[key.h sftp-common.c sftp-common.h sftp-server.c sshconnect.c sshd.c]
[ssh-dss.c ssh-rsa.c uuencode.c uuencode.h]
constify. ok markus@ & djm@
Diffstat (limited to 'uuencode.h')
-rw-r--r-- | uuencode.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uuencode.h b/uuencode.h index 682b623ac..08e87c4bc 100644 --- a/uuencode.h +++ b/uuencode.h @@ -1,4 +1,4 @@ -/* $OpenBSD: uuencode.h,v 1.9 2002/02/25 16:33:27 markus Exp $ */ +/* $OpenBSD: uuencode.h,v 1.10 2003/11/10 16:23:41 jakob Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. @@ -26,7 +26,7 @@ #ifndef UUENCODE_H #define UUENCODE_H -int uuencode(u_char *, u_int, char *, size_t); +int uuencode(const u_char *, u_int, char *, size_t); int uudecode(const char *, u_char *, size_t); void dump_base64(FILE *, u_char *, u_int); #endif |