summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/src/libauthsrv/readnvram.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/libauthsrv/readnvram.c b/sys/src/libauthsrv/readnvram.c
index 3303ed613..ae6045b18 100644
--- a/sys/src/libauthsrv/readnvram.c
+++ b/sys/src/libauthsrv/readnvram.c
@@ -146,7 +146,7 @@ findnvram(Nvrwhere *locp)
cputype = getenv("cputype");
if(cputype == nil)
cputype = strdup("mips");
- if(strcmp(cputype, "386")==0 || strcmp(cputype, "alpha")==0) {
+ if(strcmp(cputype, "386")==0 || strcmp(cputype, "amd64")==0 || strcmp(cputype, "alpha")==0) {
free(cputype);
cputype = strdup("pc");
}