summaryrefslogtreecommitdiffstats
path: root/src/plugins/authdata
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/authdata')
-rw-r--r--src/plugins/authdata/greet/greet_auth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/authdata/greet/greet_auth.c b/src/plugins/authdata/greet/greet_auth.c
index a9d359eaa..f7b6dd733 100644
--- a/src/plugins/authdata/greet/greet_auth.c
+++ b/src/plugins/authdata/greet/greet_auth.c
@@ -65,7 +65,7 @@ greet_authdata(krb5_context ctx, krb5_db_entry *client,
free(a);
return ENOMEM;
}
- strcpy(p, "hello there");
+ strncpy(p, "hello there", GREET_SIZE-1);
a->magic = KV5M_AUTHDATA;
a->ad_type = -42;
a->length = GREET_SIZE;